当前位置: 代码迷 >> 综合 >> ECharts使用:this.dom.getContext is not a function
  详细解决方案

ECharts使用:this.dom.getContext is not a function

热度:78   发布时间:2024-01-17 16:05:36.0

echarts 画图报错 this.dom.getContext is not a function;

原因:因为在初始化echarts的时候,echarts.js规定只能使用dom原生方法获取标签,即document.getElementById(‘main’);
在这里插入图片描述
错误写法:


var myCommentLineChart = echarts.init($("#comment-line"));

加粗样式

var myCommentLineChart = echarts.init(document.getElementById('comment-line'));
  相关解决方案