import React, { useState, useEffect } from 'react' import { Bar, Line } from 'react-chartjs-2'; import { Chart as ChartJS, CategoryScale, LinearScale, BarElement, Title, Tooltip, Legend } from 'chart.js' import faker from 'faker' import { ChartView } from './ChartView'; import RenderIf from '../../utils/renderIf'; import ChartTitle from './ChartTitle'; // import { data } from './LineBarChart'; ChartJS.register( CategoryScale, LinearScale, BarElement, Title, Tooltip, Legend ) interface ChartInterface { title: string, subtitle: string, data1: any, data2: any, single?: any label: any, dataset1?: string, dataset2?: string, barLabel?: boolean | undefined } export default function Chart({ title, data1, data2, label, subtitle, dataset1, dataset2, barLabel }: ChartInterface) { const labels = label; const empty = [] const data = { labels, datasets: [ { label: dataset1? dataset1 : '2020', data: data1.map(value => value), backgroundColor: '#C2D5FB', }, data2? { label: dataset2? dataset2 : '2021', data: data2.map(value => value), backgroundColor: '#255488', } : null ], } const options: any = { responsive: true, plugins: { datalabels: { display: true, color: barLabel? 'black' : "rgba(255, 255, 255, 0)", formatter: Math.round, anchor: "end", offset: -20, align: "start" }, legend: { position: 'bottom' as const, }, title: { display: true, text: '', }, }, }; return ( {/* */} ) }