如何使yAxis数据正确到达顶部?

时间:2016-06-03 07:17:23

标签: javascript highcharts

我需要设置tickInterval的数量,yAx是最大系列数据。 我的方法是在图表初始化后设置它们,如下所示:

this.barChart.yAxis[0].options.tickInterval = this.barChart.yAxis[0].dataMax;
this.barChart.yAxis[0].setExtremes(0,this.barChart.yAxis[0].dataMax);

似乎我无法在init图表之前获得最大数字。所以我在图表初始化后设置它。它的工作原理如下:

enter image description here 选择其中一部分后,“重置缩放”按钮将显示,如果它被阻止,则tickInterval和极端会改变 enter image description here 这是图片: enter image description here

如何解决此问题?

0 个答案:

没有答案