1π
β
I can see you are trying to remove the label from your chart i.e is from the pie of your chart. So to inform you if you donβt know that label is coming from "chartjs-plugin-labels"
Either you can remove it, if not you can try below solution
plugins: {
labels: {
render: function (args) {
return "";
},
fontColor: ['black', 'black', 'black'],
precision: 2,
}
},
Source:stackexchange.com