auditforge / frontend /src /components /charts /RemediationPriorityChart.tsx
Kaballas's picture
initialize project structure with essential configurations and components
56b6519
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<Props> = ({ data }) => {
if (!data.length) {
return (
<p className="text-sm text-gray-500">{t('err.noMatchingRecords')}</p>
);
}
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 (
<div className="h-[300px] w-full">
<Bar data={chartData} options={options} />
</div>
);
};