Scale numbers on # flows graph

This commit is contained in:
Herbert Wolverson 2024-07-02 15:04:35 -05:00
parent da4df7dce8
commit f69309f7b7

View File

@ -20,6 +20,11 @@ export class FlowCountGraph extends DashboardGraph {
},
yAxis: {
type: 'value',
axisLabel: {
formatter: (val) => {
return scaleNumber(Math.abs(val));
},
}
},
series: {
name: 'flows',