1

每当我在 Y 轴上将最小值设置为 0 时,我的刻度都会变为十进制数。上面的代码在 Y 轴上显示了 80、90、100 等数字:

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

设置选项时min,刻度显示为 80.00、90.00、100.00。

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

添加选项时如何避免更改字符串格式min

4

1 回答 1

0

尝试添加

tickInterval: x

例如:

yaxis:{
 autoscale: true,
 min: 0,
 formatString: "%d"
 tickInterval: 10
}
于 2012-12-18T15:50:53.790 回答