在highcharts中设置x轴范围

时间:2013-07-25 14:02:17

标签: highcharts

我有多个时间序列没有相同的起点/终点。我想在x轴上修复一个起点和一个终点,我尝试了类似的东西:

    xAxis: {
        min: new Date('2000/10/22'),
        max: new Date('2010/10/22'),
    },

jsfiddle link

但它不起作用。顺便说一下,highcharts网站上的文档min中{{1}}的链接错误。

1 个答案:

答案 0 :(得分:12)

最小值和最大值应该是时间戳,而不是日期对象。

正确的代码:

    xAxis: {
        min: new Date('2000/10/22').getTime(),
        max: new Date('2010/10/22').getTime(),
    },

http://jsfiddle.net/34CZK/3/