3👍
✅
You can use ticks.padding
to define the offset of the tick labels from the axis. In you case, it needs to be defined inside the options.scales.yAxis
as follows:
options: {
scales: {
yAxes: [{
gridLines: {
drawTicks: false
},
ticks: {
padding: 5
}
}],
Source:stackexchange.com