gpt4 book ai didi

javascript - Highcharts 绘图标记在样条图动画后面移动

转载 作者:行者123 更新时间:2023-11-30 18:07:25 29 4
gpt4 key购买 nike

我刚刚写了一个简单的图表。在此图中,线条在标记之前移动,因此我觉得很奇怪。我很确定这是关于动画属性的,但我找不到导致问题的原因。

你可以查看我的代码here

我用下面的代码设置值

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);

}

最佳答案

是addPoint引起的,重绘所有图表3次。所以我建议不要为 1/2 点重新绘制图表,只为最后一次。

http://jsfiddle.net/md7hW/4/

setInterval(function() {
var x = (new Date()).getTime(), // current time
y = Math.random();
series1.addPoint([x, y], false, true);

var x = (new Date()).getTime(), // current time
y = Math.random();
series2.addPoint([x, y], false, true);

var x = (new Date()).getTime(), // current time
y = Math.random();
series3.addPoint([x, y], true, true);

}, 1000);

http://api.highcharts.com/highcharts#Series.addPoint()

关于javascript - Highcharts 绘图标记在样条图动画后面移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15480600/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com