0

任何人都可以举一个drilldownY 轴标签的最小值和最大值的图表示例吗?这是来自Highcharts 网站的示例的jsfiddle

我一直在试图弄清楚如何为 Y 轴标签设置最小值和最大值。因此,例如,我不想从 0 开始,而是从 88 开始。

4

1 回答 1

0

To get the desired result - for example, start yAxis values at 88, you should use this settings:

new Highcharts.Chart({
    ....
    yAxis: {
        min: 88,
        startOnTick: false // To prevent rounding of this value.
    },
    ....
});

Hope this helps.

于 2012-09-27T15:07:06.517 回答