簡単なグラフを書いたところです。このグラフでは、線がマーカーの前に移動しているため、非常に奇妙に思えます。これはアニメーションのプロパティに関するものだと確信していますが、問題の原因はわかりません。
ここで私のコードを調べることができます
次のコードで値を設定します
function () {
// set up the updating of the chart each second
var series1 = this.series[0];
var series2 = this.series[1];
var series3 = this.series[2];
setInterval(function () {
var x = (new Date()).getTime(), // current time
y = Math.random();
series1.addPoint([x, y], true, true);
var x = (new Date()).getTime(), // current time
y = Math.random();
series2.addPoint([x, y], true, true);
var x = (new Date()).getTime(), // current time
y = Math.random();
series3.addPoint([x, y], true, true);
}, 1000);
}