[Chartjs]-How to remove Chart.js legend

3πŸ‘

βœ…

In version 3 the legend has moved to the plugin section in the options so if you put it like this it will hide the legend:

options: {
   plugins: {
      legend: {
         display: false
      }
   }
}

Leave a comment