I am unable to dynamic add my data in this chart. It looks like I am trying to create a bar chart using Chart.js and React. my code seems mostly correct, but it's missing some interactivity for dynamic data updates.
import React from 'react';
import {
Chart as ChartJS,
CategoryScale,
LinearScale,
BarElement,
Title,
Tooltip,
Legend
} from "chart.js";
import { Bar } from "react-chartjs-2";
ChartJS.register(
CategoryScale,
LinearScale,
BarElement,
Title,
Tooltip,
Legend );
const BarChart = ( { CompanyData } ) => {
const filteredData = new Set();
const BarData = {};
CompanyData.forEach( e => {
filteredData.add( e.relevance );
} );
CompanyData.forEach( ( company ) => {
const location = company.region === '' ? 'city' : 'country';
if ( !BarData[ company[ location ] ] ) {
BarData[ company[ location ] ] = 1;
} else {
BarData[ company[ location ] ] += 1;
}
} );
const mainData = {
labels: Object.keys( BarData ),
datasets: [
{
label: 'Country wise City',
data: Object.values( BarData ),
backgroundColor: [ '#A0E4CB', '#C6EBC5', '#9ED5C5' ],
},
],
};
return (
<Bar data={ mainData } />
);
};
export default BarChart;
I added a useState hook to manage the chart data as the component state. I used the useEffect hook to update the chart data whenever the CompanyData prop changes. The updateChartData function calculates the new chart data based on the provided data and sets it using setChartData.
check this code for a line chart between temperature and diffusivity. contact the data array with your data. graph