Hello,
if have Chart with two yAxis on one side. The layout looks a little bit shitty, because the labels of axis 1 touches axis 2:

It would be easy if there would an option for an left/right padding/margin for the yAxis.
My current workaround is adding empty spaces to the ticks callback:
yAxes: [{
display: true,
id: 'y-left-01',
position: 'left',
ticks: {
callback: value => ` ${value} kg `
}
}, {
display: true,
id: 'y-left-02',
position: 'left',
ticks: {
callback: value => `${value}°`
}
}]

Hello,
if have Chart with two yAxis on one side. The layout looks a little bit shitty, because the labels of axis 1 touches axis 2:
It would be easy if there would an option for an left/right padding/margin for the yAxis.
My current workaround is adding empty spaces to the ticks callback: