echarts 5.3.2通过dom对象获取chart实例
Echarts可以通过dom获取已经生成得chart实例
// init chart时所使用的div id
var chart = document.getElementById(divId);
var chartInstance = echarts.getInstanceByDom(chart);
/** 获取实例后就可以使用实例上的一些方法,例如 **/
// 还原图表,可以在图表外写还原按钮的功能,而不用自带的toolbox中的按钮
chartInstance.dispatchAction({type: 'restore'});
// 销毁图表实例
chartInstance.dispose();
官方文档:
echart instance上可以使用的方法,参考官方文档