[Chartjs]-How do I remove the y-axis labels from a graph?

3👍

You can add ticks:{ display: false }. Docs

var options = {
  scales: {
    yAxes: [{
      scaleLabel: {
        display: true,
        labelString: "Normalized/Indexed Data",

      },
      ticks:{
        display: false
      }
    }]

  }
}

Leave a comment