We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ccbb49 commit d85663eCopy full SHA for d85663e
frontend/src/ts/test/result.ts
@@ -84,6 +84,7 @@ async function updateGraph(): Promise<void> {
84
let smoothedRawData = chartData2;
85
if (!useUnsmoothedRaw) {
86
smoothedRawData = Misc.smooth(smoothedRawData, 1);
87
+ smoothedRawData = smoothedRawData.map((a) => Math.round(a));
88
}
89
90
ChartController.result.data.labels = labels;
0 commit comments