首页 前端知识 【Echarts】 报错There is a chart instance already initialized on the dom.

【Echarts】 报错There is a chart instance already initialized on the dom.

2024-10-27 22:10:04 前端知识 前端哥 173 303 我要收藏

1、There is a chart instance already initialized on the dom.

 

解决办法:重绘图表时,我们要把之前已经渲染好的图表清空

const getEcharts = () => {
  let myChart = echarts.getInstanceByDom(
    document.getElementById("chart")
  );
  if (myChart == null) {
    myChart = echarts.init(document.getElementById("chart"));
  }
  myChart.setOption(option);
}

转载请注明出处或者链接地址:https://www.qianduange.cn//article/19261.html
标签
评论
发布的文章
大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!