displaying batch lots as tooltips in scatter chart

This commit is contained in:
frankknoll
2023-11-09 09:22:55 +01:00
parent cfa314b4ae
commit 46e3f4c22d
4 changed files with 35 additions and 16 deletions

View File

@@ -67,11 +67,14 @@ QUnit.module('SymptomVsSymptomChartDataProviderTest', function () {
// Then
assert.deepEqual(
chartData,
[
{
x: 2.0,
y: 3.0
}
]);
{
labels: ["lotCommon"],
data: [
{
x: 2.0,
y: 3.0
}
]
});
});
});