Add y axis to camera stats graphs

This commit is contained in:
Nicolas Mowen 2024-04-05 14:01:34 -06:00
parent 5085fa7135
commit 404f9f9a33

View File

@ -340,7 +340,10 @@ export function CameraLineGraph({
}, },
}, },
yaxis: { yaxis: {
show: false, show: true,
labels: {
formatter: (val: number) => Math.ceil(val).toString(),
},
min: 0, min: 0,
}, },
} as ApexCharts.ApexOptions; } as ApexCharts.ApexOptions;