Skip to content

Latest commit

 

History

History
16 lines (8 loc) · 394 Bytes

README.md

File metadata and controls

16 lines (8 loc) · 394 Bytes

Line Chart js

Chart image

import necessary components
import { Chart as ChartJS, CategoryScale, LinearScale, PointElement, LineElement, Title, Tooltip, Legend } from 'chart.js';

Register the necessary components

ChartJS.register(CategoryScale, LinearScale, PointElement, LineElement, Title, Tooltip, Legend);

Line Chart React js