Trying to get the Y axis scale labels to look like the image, to be position on top of the scale and not rotated.
scale options currently look like:
scales: {
yAxes: [{
id: 'temp',
scaleLabel: {
display: true,
labelString: '°C'
},
type: 'linear',
position: 'left'
}, {
id: 'ppm',
scaleLabel: {
display: true,
labelString: 'ppm',
},
type: 'linear',
position: 'left',
ticks: {
stepSize: 500
}
}, {
id: '%',
scaleLabel: {
display: true,
labelString: '%',
},
type: 'linear',
position: 'right',
ticks: {
max: 100,
min: 0
}
}]
}