I have created a line chart with these options for the yAxis:
yAxes: [{
ticks: {
precision: 1,
stepSize: 18.1,
min: 148.5,
max: 220.9
}
}]
I would like, therefore, the yAxis scales to be like this:
220.9
202.8
184.7
166.6
148.5
However, when I provide this code, I am getting this data.
Please see this fiddle for an example: https://jsfiddle.net/wxLzdrcm/
How can I make the yAxis ticks add up like I have described?