diff --git a/frontend/src/components/Graph/index.tsx b/frontend/src/components/Graph/index.tsx index bb14085d62..f4706e07a6 100644 --- a/frontend/src/components/Graph/index.tsx +++ b/frontend/src/components/Graph/index.tsx @@ -28,6 +28,23 @@ import { useThemeSwitcher } from 'react-css-theme-switcher'; // import Legends from './Legend'; // import { LegendsContainer } from './styles'; +Chart.register( + LineElement, + PointElement, + LineController, + CategoryScale, + LinearScale, + TimeScale, + TimeSeriesScale, + Decimation, + Filler, + Legend, + Title, + Tooltip, + SubTitle, + BarController, + BarElement, +); const Graph = ({ data, @@ -62,24 +79,6 @@ const Graph = ({ } if (chartRef.current !== null) { - Chart.register( - LineElement, - PointElement, - LineController, - CategoryScale, - LinearScale, - TimeScale, - TimeSeriesScale, - Decimation, - Filler, - Legend, - Title, - Tooltip, - SubTitle, - BarController, - BarElement, - ); - const options: ChartOptions = { responsive: true, maintainAspectRatio: false,