[Chartjs]-Chartjs: Is it possible to hide the data labels on the axis but show up on the graph on hover?

4👍

Using Chart.js version 2. Try ticks display false in the options section


//...
  options: {
    scales: {
        xAxes: [{
        ticks: {
            display: false
        }
      }]
    }
  }
//...

Example: https://jsfiddle.net/7o3m81zt/

Leave a comment