Highstock 给出错误 15
Highstock giving error 15
我在 highstock 中添加了两个时间序列,但是在 运行 样本之后,我得到了这个错误 : Highcharts error #15 在控制台中,浏览器也未显示 properly.I 检查此错误,但时间序列数据仅按升序排列,因此无法弄清楚为什么会出现此错误?
$('#chartdiv').highcharts('StockChart', {
rangeSelector: {
selected: 2
},
legend: {
enabled: true
},
credits: {
enabled: false
},
chart: {
zoomType: 'x'
},
title: {
text: 'test highchart'
},
series: seriesOptions
});
Here 是上述问题的fiddle。
您的 timeArr
数组实际上没有排序。只需添加此行即可消除错误:
timeArr.sort();
我在 highstock 中添加了两个时间序列,但是在 运行 样本之后,我得到了这个错误 : Highcharts error #15 在控制台中,浏览器也未显示 properly.I 检查此错误,但时间序列数据仅按升序排列,因此无法弄清楚为什么会出现此错误?
$('#chartdiv').highcharts('StockChart', {
rangeSelector: {
selected: 2
},
legend: {
enabled: true
},
credits: {
enabled: false
},
chart: {
zoomType: 'x'
},
title: {
text: 'test highchart'
},
series: seriesOptions
});
Here 是上述问题的fiddle。
您的 timeArr
数组实际上没有排序。只需添加此行即可消除错误:
timeArr.sort();