0๐
โ
There must be some logic in your code. ctx.fillText(value + โ%โ, position.x, position.y); like this. I donโt see that in your code given code. if it is there, Please remove it. It will work.
2๐
If you want to remove only the percentages, just add this line in your options
labels: { render: () => {} }
It will look like:
options: {
plugins: {
labels: {
render: () => {}
}
}
}
Source:stackexchange.com