我在尝试在我的网络应用中显示Xrange图表时遇到问题。
一切正常,直到我尝试缩放图表并且数据条目的一个极端落在视口之外,从那时起不显示图形表示。
chart: {
type: 'xrange',
zoomType: 'x'
},
title: {
text: 'Highcharts X-range study'
},
xAxis: {
type: 'datetime'
},
yAxis: {
max: 1,
opposite: false,
categories: ["", ""],
gridLineWidth: 0
},
plotOptions: {
series: {
turboThreshold: 0
}
}
...
答案 0 :(得分:1)
正如 @morganfree 在comment中正确地说的那样,当OP提出问题时,x-range仍处于开发阶段。
此错误已在Highcharts版本6中修复,但我在Angular 5应用程序中仍然遇到相同的问题,直到我在以下错误报告中看到来自 oysteinmoseng 的评论:https://github.com/highcharts/highcharts/issues/6577 < / p>
请务必加入modules/xrange.js
而不是旧的modules/xrange-series.js
。