highchart 股票:包含周末数据点时图形消失
highchart stock : graph disappear when containing weekend data point
最近在使用highchart stock(highstock.js)时遇到一个很奇怪的问题。我加载了一些包含星期六数据点的数据点。当应用程序运行时,起初它看起来像这样:
没有图表出现,只有导航器和时间轴标签。然而,当我将导航器拖动到最大尺寸时,图形出现了,但 x 轴时间标签消失了,它看起来像这样:
我在这里建了一个plunker:graph disappear when met weekend data point link
部分主要配置代码如下:
scrollbar : {
barBackgroundColor : 'gray',
barBorderRadius : 7,
barBorderWidth : 0,
buttonBackgroundColor : 'gray',
buttonBorderWidth : 0,
buttonArrowColor : 'yellow',
buttonBorderRadius : 7,
rifleColor : 'yellow',
trackBackgroundColor : 'white',
trackBorderWidth : 1,
trackBorderColor : 'silver',
trackBorderRadius : 7,
// enabled: false,
liveRedraw : false
},
navigator : {
xAxis : {
labels : {
formatter : function(e) {
console.log("value : " + this.value);
console.log("value :" + typeof this.value)
return Highcharts.dateFormat('%Y-%m-%d', this.value);
}
}
},
handles : {
backgroundColor : '#808080'
},
//margin : -10
},
xAxis : {
type : 'datetime',
tickLength : 0
},
谁能告诉我为什么?
我找到了真正的原因。不是因为周末数据点,而是因为数据没有按时间升序排列。
最近在使用highchart stock(highstock.js)时遇到一个很奇怪的问题。我加载了一些包含星期六数据点的数据点。当应用程序运行时,起初它看起来像这样:
没有图表出现,只有导航器和时间轴标签。然而,当我将导航器拖动到最大尺寸时,图形出现了,但 x 轴时间标签消失了,它看起来像这样:
我在这里建了一个plunker:graph disappear when met weekend data point link
部分主要配置代码如下:
scrollbar : {
barBackgroundColor : 'gray',
barBorderRadius : 7,
barBorderWidth : 0,
buttonBackgroundColor : 'gray',
buttonBorderWidth : 0,
buttonArrowColor : 'yellow',
buttonBorderRadius : 7,
rifleColor : 'yellow',
trackBackgroundColor : 'white',
trackBorderWidth : 1,
trackBorderColor : 'silver',
trackBorderRadius : 7,
// enabled: false,
liveRedraw : false
},
navigator : {
xAxis : {
labels : {
formatter : function(e) {
console.log("value : " + this.value);
console.log("value :" + typeof this.value)
return Highcharts.dateFormat('%Y-%m-%d', this.value);
}
}
},
handles : {
backgroundColor : '#808080'
},
//margin : -10
},
xAxis : {
type : 'datetime',
tickLength : 0
},
谁能告诉我为什么?
我找到了真正的原因。不是因为周末数据点,而是因为数据没有按时间升序排列。