Reputation: 1285
I'd like to display the yaxis as a ranking, that is it should display 1, 2, 3, .... What it does is, it displays 2, 4, 6. I put "step: 1", but this doesn't help. I don't succeed in convincing Highcharts to do it differently... Here is the fiddle.
Thanks for any hints!
Upvotes: 0
Views: 197
Reputation: 590
replace
allowDecimals:false,
labels:
{
step: 0.5
}
with
tickInterval: 1
Thanks
Paul.
Upvotes: 1