Skip to content
Advertisement

How to remove Label from charts.js

I am using charts.js to create a charts for my website. I am unable the remove the legend from the chart. Image

I did not found the solution. This is the first time I am using charts.js library.

code:

JavaScript

}); Thanks in advance.

Advertisement

Answer

Here is the documentation https://www.chartjs.org/docs/latest/configuration/legend.html

you can simply set legend.display to false.

JavaScript

You can try it here https://codesandbox.io/s/wonj2xn23w?file=/src/index.js

Advertisement