其他分享
首页 > 其他分享> > 判断echart是否已经存在,如果不存在,就进行初始化

判断echart是否已经存在,如果不存在,就进行初始化

作者:互联网

判断echart是否已经存在,如果不存在,就进行初始化

There is a chart instance already initialized on the dom

 

 

//获取已有echarts实例的DOM节点。
let myChart = echarts.getInstanceByDom(document.getElementById("fei"));
if (myChart == null) { // 如果不存在,就进行初始化。
  myChart = echarts.init(document.getElementById("fei"));
  myChart.setOption(options, true);
}

 

标签:初始化,存在,echart,myChart,fei,document,echarts
来源: https://www.cnblogs.com/dafei4/p/15792369.html