series.addPoint (オブジェクトオプション、[Boolean redraw]、[Boolean shift]、[Mixed animation])
chart: {
events: {
load: function() {
// set up the updating of the chart each second
var series = this.series[0];
setInterval(function() {
var x = (new Date()).getTime(), // current time
y = Math.round(Math.random() * 100);
series.addPoint([x, y], true, false, true);
}, 1000);
}
}
},
xAxis: {
maxPadding: 1
}
9:00~18:00などx軸固定の範囲でデータを動的に更新したいのですが、再描画が発生するとx軸の最大値が大きくなってしまいます。株価チャートは株価を動的に表示します。
私のコード: http://jsfiddle.net/cruelcage/ny43Z/
誰かが私を助けることができますか?