diff --git a/web/src/components/graph/SystemGraph.tsx b/web/src/components/graph/SystemGraph.tsx index d66fb5f7c..07d3aa651 100644 --- a/web/src/components/graph/SystemGraph.tsx +++ b/web/src/components/graph/SystemGraph.tsx @@ -340,7 +340,10 @@ export function CameraLineGraph({ }, }, yaxis: { - show: false, + show: true, + labels: { + formatter: (val: number) => Math.ceil(val).toString(), + }, min: 0, }, } as ApexCharts.ApexOptions;