Reputation: 410
According to the image I have attached, I want to show the percentage or value of labels in the pie chart, but I couldn't find any option.
const options = {
plugins: {
legend: {
display: false,
},
tooltip: {
zIndex: 9999,
callbacks: {
label: function (data) {
return "Total: " + data.formattedValue;
},
},
},
datalabels: {
formatter: function (value) {
//custom money icon
return value;
},
color: "#000",
font: {
weight: 'bold',
size:14,
},
},
},
};
Upvotes: 0
Views: 65