3👍
✅
You can add ticks:{ display: false }
. Docs
var options = {
scales: {
yAxes: [{
scaleLabel: {
display: true,
labelString: "Normalized/Indexed Data",
},
ticks:{
display: false
}
}]
}
}
Source:stackexchange.com