import { BarElement, CategoryScale, Chart as ChartJS, Legend, LinearScale, Title, Tooltip, } from 'chart.js'; import { t } from 'i18next'; import React from 'react'; import { Bar } from 'react-chartjs-2'; ChartJS.register( CategoryScale, LinearScale, BarElement, Title, Tooltip, Legend, ); type PriorityData = { name: string; count: number; color: string; }; type Props = { data: PriorityData[]; }; export const RemediationPriorityChart: React.FC = ({ data }) => { if (!data.length) { return (

{t('err.noMatchingRecords')}

); } const chartData = { labels: data.map(d => d.name), datasets: [ { data: data.map(d => d.count), backgroundColor: data.map(d => d.color), }, ], }; const options = { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false, }, datalabels: { formatter: () => '', }, }, scales: { y: { beginAtZero: true, }, }, }; return (
); };