Domanda

Whenever I am setting up the min value to 0 on the Y-axis my ticks are changing to decimal numbers. The above code displays numbers like 80, 90, 100 on the Y-axis:

 yaxis:{
     autoscale: true,
     formatString: "%d"
 }

When min option is set the ticks are displayed like 80.00, 90.00, 100.00.

yaxis:{
     autoscale: true,
     min: 0,
     formatString: "%d"
 }

How can I avoid changing the string format when adding the min option?

È stato utile?

Soluzione

Try adding

tickInterval: x

For example:

yaxis:{
 autoscale: true,
 min: 0,
 formatString: "%d"
 tickInterval: 10
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top