score:0

Accepted answer

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.

score:1

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: () => {}
          }
        }
    }

Related Query

More Query from same tag