花键更新每秒出现和消失

时间:2018-06-22 10:32:21

标签: highcharts angular2-highcharts

我的样条图更新每秒都有一个问题。图表每次都会重绘,因此不会显示恒定波动。

这是图片的样子

enter image description here

我已经尝试过了

this.timeinterval = setInterval(() => {
    const x = (new Date()).getTime() + 7200000; // current time
    if (this.voltage) {
      this.chart['series'][0].addPoint([x, this.voltage], true, true);
    }
  }, 250);

我怎样才能使其平稳运行。

0 个答案:

没有答案