Highcharts 更新大数组

Highcharts update large array

在 React Redux 应用程序中,我有一个包含时间序列数据(大约 10k 个数据点)的大型数组。数据由 redux 存储提供。该应用程序使用 highcharts-react-official 2.x.x。大数组经常通过附加新数据点来更新(仅附加,现有数组元素是不可变的)。

由于这些更新,图表似乎每次都完全呈现。我怎样才能避免这种情况?

const options = {
  series: [
    {
      type: 'line',
      data: objectFromReduxStore.map(p => ([p.time.toMillis(), p.value])),
    }
  ]
}
...

<HighchartsReact
  highcharts={Highcharts}
  options={options}
  containerProps={{style: {height: '300px', width: '100%'}}}
/>

highcharts-react-official 包装器使用 chart.update(options) 方法应用更改。在您的情况下,更有效的解决方案是获取图表参考并直接调用系列的 addPoint 方法。

constructor(props) {
  super(props);
  this.afterChartCreated = this.afterChartCreated.bind(this);
}

afterChartCreated(chart) {
  this.internalChart = chart;
}

componentDidMount() {
  setInterval(() => {
    this.internalChart.series[0].addPoint(Math.random() * 5);
  }, 1500);
}

render() {
  return (
    <HighchartsReact
      highcharts={Highcharts}
      options={options}
      callback={this.afterChartCreated}
    />
  );
}

现场演示: https://codesandbox.io/s/highcharts-react-demo-gp6n6?file=/demo.jsx

API参考:https://api.highcharts.com/class-reference/Highcharts.Series#addPoint