86 lines
1.9 KiB
JavaScript
86 lines
1.9 KiB
JavaScript
import React, { useRef, useEffect } from 'react';
|
|
|
|
import {
|
|
Chart, LineController, LineElement, Filler, PointElement, LinearScale, CategoryScale, Tooltip,
|
|
} from 'chart.js';
|
|
import 'chartjs-adapter-moment';
|
|
|
|
// Import utilities
|
|
import { formatValue } from '../utils/Utils';
|
|
|
|
Chart.register(LineController, LineElement, Filler, PointElement, LinearScale, CategoryScale, Tooltip);
|
|
|
|
function LineChart07({
|
|
data,
|
|
width,
|
|
height
|
|
}) {
|
|
|
|
const canvas = useRef(null);
|
|
|
|
useEffect(() => {
|
|
const ctx = canvas.current;
|
|
// eslint-disable-next-line no-unused-vars
|
|
const chart = new Chart(ctx, {
|
|
type: 'line',
|
|
data: data,
|
|
options: {
|
|
layout: {
|
|
padding: {
|
|
top: 12,
|
|
bottom: 16,
|
|
left: 20,
|
|
right: 20,
|
|
},
|
|
},
|
|
scales: {
|
|
y: {
|
|
beginAtZero: true,
|
|
grid: {
|
|
drawBorder: false,
|
|
},
|
|
ticks: {
|
|
maxTicksLimit: 7,
|
|
callback: (value) => formatValue(value),
|
|
},
|
|
},
|
|
x: {
|
|
grid: {
|
|
display: false,
|
|
drawBorder: false,
|
|
},
|
|
ticks: {
|
|
autoSkipPadding: 48,
|
|
maxRotation: 0,
|
|
align: 'end',
|
|
},
|
|
},
|
|
},
|
|
plugins: {
|
|
tooltip: {
|
|
callbacks: {
|
|
title: () => false, // Disable tooltip title
|
|
label: (context) => formatValue(context.parsed.y),
|
|
},
|
|
},
|
|
legend: {
|
|
display: false,
|
|
},
|
|
},
|
|
interaction: {
|
|
intersect: false,
|
|
mode: 'nearest',
|
|
},
|
|
maintainAspectRatio: false,
|
|
},
|
|
});
|
|
return () => chart.destroy();
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
return (
|
|
<canvas ref={canvas} width={width} height={height}></canvas>
|
|
);
|
|
}
|
|
|
|
export default LineChart07; |