import React from 'react'; import { Chart, LineElement, PointElement, LineController, LinearScale, CategoryScale, Tooltip, } from 'chart.js'; import { Line } from 'react-chartjs-2'; Chart.register( LineElement, PointElement, LineController, LinearScale, CategoryScale, Tooltip, ); const options = { responsive: true, maintainAspectRatio: false, scales: { y: { display: false, }, x: { display: true, }, }, plugins: { legend: { display: false, }, }, }; const ChartLineSample = ({ data }) => { return ; }; export default ChartLineSample;