开发者问题收集

Chartjs destroy 方法不影响图表

2018-01-12
3810

嗨,我的 React 应用程序中有此代码:

this.chart = new Chart(node, options);
// adding data to the chart ...
this.chart.destroy();
this.chart = null;
this.chart = new Chart(node, options);
// adding data to the chart ...

第二次添加数据后,第一个数据集仍出现在图表上。我也尝试过删除画布节点,但得到的结果相同。有人知道为什么会发生这种情况吗?

1个回答
136344045

// 2秒后更改新数据集

0788857254
Negi Rox
2018-01-12