Skip to content
Advertisement

How to remove data numbers in “line” type, chart.js

Numbers behind the cirle I want to hide image of chart

Advertisement

Answer

Configure that in the options of your chart

options: {
    scales: {
      yAxes: [{
        display: false
      }]
    }
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement