Skip to content

Commit 3648a2b

Browse files
author
rhamlett_microsoft
committed
Fixed chart diplay issue.
1 parent 4462c7b commit 3648a2b

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

src/PerfProblemSimulator/wwwroot/js/dashboard.js

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,9 @@ function initializeCharts() {
268268
backgroundColor: 'rgba(0, 120, 212, 0.1)',
269269
tension: 0.3,
270270
fill: true,
271-
yAxisID: 'y'
271+
yAxisID: 'y',
272+
pointRadius: 0,
273+
pointHoverRadius: 0
272274
},
273275
{
274276
label: 'Memory MB',
@@ -277,7 +279,9 @@ function initializeCharts() {
277279
backgroundColor: 'rgba(16, 124, 16, 0.1)',
278280
tension: 0.3,
279281
fill: true,
280-
yAxisID: 'y1'
282+
yAxisID: 'y1',
283+
pointRadius: 0,
284+
pointHoverRadius: 0
281285
}
282286
]
283287
},
@@ -336,7 +340,9 @@ function initializeCharts() {
336340
backgroundColor: 'rgba(135, 100, 184, 0.1)',
337341
tension: 0.3,
338342
fill: true,
339-
yAxisID: 'y'
343+
yAxisID: 'y',
344+
pointRadius: 0,
345+
pointHoverRadius: 0
340346
},
341347
{
342348
label: 'Queue Length',
@@ -345,7 +351,9 @@ function initializeCharts() {
345351
backgroundColor: 'rgba(255, 185, 0, 0.1)',
346352
tension: 0.3,
347353
fill: true,
348-
yAxisID: 'y1'
354+
yAxisID: 'y1',
355+
pointRadius: 0,
356+
pointHoverRadius: 0
349357
}
350358
]
351359
},

0 commit comments

Comments
 (0)