So far, I do not yet know how to display the percentage symbol inside the graph.
plugins: {
datalabels: {
backgroundColor: function (context) {
return context.dataset.backgroundColor;
},
borderRadius: 25,
borderWidth: 3,
color: "black",
font: {
weight: "bold"
},
padding: 6
},
This is for the hover but it's not working. No percentage symbol is displaying.
tooltip: {
callbacks: {
label: (ttItem) => ttItem.label
}
}
}
This is also in codesandbox:https://codesandbox.io/s/bar-graph-9nr8u?file=/src/App.js:3205-3719