1👍
✅
You can filter out tick
labels by defining a yAxes.ticks.callback
function as follows.
options: {
...
scales: {
yAxes: [{
ticks: {
callback: () => undefined
}
}]
},
For further details, please consult chapter Creating Custom Tick Formats from the Chart.js documentation.
Source:stackexchange.com