highcharts xaxis navigator没有显示

时间:2013-11-13 10:56:49

标签: javascript highcharts

我在图表上有一些日期/价值系列,没什么复杂的。我想在底部使用缩放导航器,但是它没有显示在我的图表上。

$(function () {
    $('#container').highcharts({
        chart: { type: 'spline' },
        title: { text: 'intensity' },
        rangeSelector: { selected: 2},
        xAxis: { type: 'datetime', },
        yAxis: [
            { title: { text: 'Intensity (A)' }, min: 0 },
            { title: { text: 'Nb' }, min: 0, opposite: true },
        ],
        series: [
            { name: 'serie 1', yAxis: 0, visible: false, turboThreshold: 546, marker: {enabled: false}, data: [
                [Date.UTC(2013, 09-1, 25, 10, 38, 01, 0), 142.205467], 
                [Date.UTC(2013, 09-1, 25, 10, 43, 01, 0), 142.886567],
                ...]
            },
            { name: 'serie 2', yAxis: 1, visible: false, turboThreshold: 20, marker: {enabled: false}, data: [
                [Date.UTC(2013, 09-1, 23, 13, 58, 25, 0), 0.000000], 
                [Date.UTC(2013, 09-1, 23, 13, 58, 26, 0), 1.000000],
                 ... ]
            },
...

如果这可能是问题,我总共大约有40个系列,总共有30000个。

我试过navigator: {enabled: true}和类似的事情(将导航器中的数据系列设置为与我的第一个数据系列相同)但没有工作

我该怎么办?我必须使用高档原料吗?他们的api比highcharts更复杂,如果可能的话我更愿意使用后者

1 个答案:

答案 0 :(得分:2)

导航器仅在highstock.js文件中可用。因此,您可以将此文件与您的highcharts结合使用。