From e548566854d810dec67465d6b1558eebebc32c7a Mon Sep 17 00:00:00 2001 From: csawatzky Date: Thu, 27 Feb 2025 11:24:29 -0600 Subject: [PATCH] added true to fix the tooltip on the chart --- src/charts/measurementCharts/MultiLineGraph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/charts/measurementCharts/MultiLineGraph.tsx b/src/charts/measurementCharts/MultiLineGraph.tsx index 6e064e0..7b602c7 100644 --- a/src/charts/measurementCharts/MultiLineGraph.tsx +++ b/src/charts/measurementCharts/MultiLineGraph.tsx @@ -208,7 +208,7 @@ export default function MultiLineGraph(props: Props) { {...props} valueFormatter={value => { return describer.convertWithUnits( - roundTo(parseFloat(String(value)), 2) + roundTo(parseFloat(String(value)), 2), true ); }} />