const {
reusableChartBuild,
createDatasetColor,
reusableOnClickFunction
} = require('../others/chartjs.utils');
/**
* @memberOf ChartJSModule
* @function
* @name doughnutChart
* @desc function to build a doughnut chart
* @param {string} title - chart title
* @param {HTMLBodyElement} htmlElementContainer - container html element, where the chart is inserted
* @param {string} idElement - chart id
* @param {array} labels - array of strings containing the labels of each value within the dataset
* @param {array} datasets - array of integers with data. structure: <code>
* [
* [number, number, ...],
* [number, number, ...],
* ...
* ]
* </code>
* @param {string=} [positionOfLegend='top'] - legend position, which can be (top | bottom | left | right)
* @param {array} [backgroundColor=null] - array of colors rgba with length equal to data length
* @param {ChartJSModule.chartJSUtils.reusableOnClickFunction=} [clickEventForEachElement=() => {}] - callback function on event click on chart element
* @returns {*|{}}
* @see <img src="https://i.imgur.com/qFr0bXO.jpg"></img>
* @example chartJS.doughnutChart(
* 'doughnut-chart', // title of chart
* document.getElementById('charts'), // id of container of the chart
* 'doughnut_chart', // id of chart to build
* ['test_1', 'test_2', 'test_3'], // labels of data
* [[58, 90, 50], [50, 20, 20]], // data
* );
*/
module.exports = (
title,
htmlElementContainer,
idElement,
labels,
datasets,
positionOfLegend = 'top',
backgroundColor = undefined,
clickEventForEachElement = () => { }
) => {
const datasetsArray = [];
let doughnutChart = {};
const [{ length }] = datasets;
let colors = [];
for (let i = 0; i < length; i++) {
colors.push(createDatasetColor());
}
doughnutChart = reusableChartBuild(
datasets,
(data) => {
const backgroundColorLabel = [];
if (!backgroundColor) {
let count = 0;
data.forEach(() => {
const { backgroundColorLabelItem } = colors[count];
backgroundColorLabel.push(backgroundColorLabelItem);
count++;
});
}
datasetsArray.push({
data,
backgroundColor: !backgroundColor ? backgroundColorLabel : backgroundColor
});
},
htmlElementContainer,
idElement,
{
type: 'doughnut',
data: {
labels,
datasets: datasetsArray
},
options: {
title: {
display: true,
text: title
},
responsive: true,
legend: {
position: positionOfLegend
},
animation: {
animateRotate: true,
animateScale: true
},
onClick: ($event) => reusableOnClickFunction($event, doughnutChart, clickEventForEachElement)
}
}
);
return doughnutChart;
};
Source