[Chartjs]-How can I prevent the hover data from displaying in Chart.JS?

7👍

You should add this to your options:

tooltips: {
    enabled: false
}

Codepen example

More information here

4👍

Answer in 2022:

options: {
  plugins: {
      tooltip: {
          enabled: false
               },
           }
         },

Documentation here on Charts.js

Leave a comment