luftikus143
luftikus143

Reputation: 1285

How can I convince Highcharts to display the right (mine) steps on yaxis?

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

Answers (1)

PaulG
PaulG

Reputation: 590

replace

allowDecimals:false,
labels:
{
    step: 0.5
}

with

tickInterval: 1

Thanks

Paul.

Upvotes: 1

Related Questions