23 lines
286 B
TypeScript
23 lines
286 B
TypeScript
import {
|
|
BarElement,
|
|
CategoryScale,
|
|
Chart as ChartJS,
|
|
Filler,
|
|
Legend,
|
|
LinearScale,
|
|
LineElement,
|
|
PointElement,
|
|
Tooltip,
|
|
} from 'chart.js';
|
|
|
|
ChartJS.register(
|
|
CategoryScale,
|
|
LinearScale,
|
|
PointElement,
|
|
LineElement,
|
|
BarElement,
|
|
Filler,
|
|
Tooltip,
|
|
Legend,
|
|
);
|