我正在使用ZingChart.render()方法渲染散点图。它工作得很好,给了我预期的结果。
我想执行一些代码后,图形渲染完成。由于JS代码以异步方式执行,我想在图形渲染后执行的代码在图形渲染之前执行。
在JS/ZingChart中是否有方法可以让我在ZingChart渲染完成后成功执行一些代码?
SampleCode.js
zingchart.render({
id:'chartDiv',
data:chartData,
height:400,
width:600
});
ZingChart渲染完成后需要执行的样行
performance.now()
对
Ajay
zing chart提供回调:
zingchart.render({
id:'chartDiv',
data:chartData,
height:400,
width:600,
events: {
complete: function(p) {
alert('complete');
}
}
});
参考:https://www.zingchart.com/docs/developers/zingchart-object-and-methods/的呈现方法
希望能有所帮助