我在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是上述问题的小提琴。