javascript – Highstock给出错误15

我在highstock中添加了两个时间序列,但在运行样本后,我收到此错误:控制台中的Highcharts错误#15也没有正确显示浏览器.我检查了这个错误但是时间序列数据只是按升序排列,所以不能弄清楚为什么会出现这个错误?

$('#chartdiv').highcharts('StockChart', {
    rangeSelector: {
        selected: 2
    },
    legend: {
        enabled: true
    },
    credits: {
        enabled: false
    },
    chart: {
        zoomType: 'x'
    },
    title: {
        text: 'test highchart'
    },
    series: seriesOptions
});

Here是上述问题的小提琴.

最佳答案 您的timeArr数组实际上没有排序.只需添加此行即可消除错误:

timeArr.sort();

看你的updated JSFiddle here.

点赞