- 每次init之后,先dispose释放下资源,再重新init
let myChart = Echart.init(document.getElementById(DomID));
myChart.dispose();
myChart = Echart.init(document.getElementById(DomID));
- setOption时候,设置setOption(option,true),true表示数据不合并
setOption(Object option,{boolean = true} notMerge) // notmerge默认为false,即不不合并,就是合并,true就是不合并(脑残设计)