Scale numbers on # flows graph (Update: fix the decimal places)

This commit is contained in:
Herbert Wolverson 2024-07-02 15:05:57 -05:00
parent f69309f7b7
commit 1fac078389

View File

@ -22,7 +22,7 @@ export class FlowCountGraph extends DashboardGraph {
type: 'value',
axisLabel: {
formatter: (val) => {
return scaleNumber(Math.abs(val));
return scaleNumber(Math.abs(val), 0);
},
}
},