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 bfb06a2 commit 485eb22Copy full SHA for 485eb22
frontend/src/ts/controllers/chart-controller.ts
@@ -1096,8 +1096,8 @@ function updateAccuracy(updateChart = true): void {
1096
} else {
1097
const minAccRoundedTo10 =
1098
Math.floor(
1099
- Math.min(...accountHistory.getDataset("acc").data.map((x) => x.y)) / 10
1100
- ) * 10;
+ Math.min(...accountHistory.getDataset("acc").data.map((x) => x.y)) / 5
+ ) * 5;
1101
1102
accountHistory.getScale("acc").min = minAccRoundedTo10;
1103
accountHistory.getScale("accAvgTen").min = minAccRoundedTo10;
0 commit comments