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/
Source:stackexchange.com