Chartjs-How to remove a label in top of bar in chartjs chart

3๐Ÿ‘

โœ…

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

Leave a comment