vue项目中使用echarts报以下错误怎么解决
[ECharts] Unkown series undefined
可能是吧series 数组里面的某一类数据注释了导致的,我这边是这样子出来的这个错误
不写图形类型(柱状 饼状等) 也会报这个错误
检查echarts是否引入,引入是否正确
新版 echarts 需要这样引入
import * as from 'echarts'
Vue.prototype.$echarts = echarts;
options里series 定义了吗?
series中加一行 type: 'bar'
series: [
{
name: '统计',
data: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
showInLegend: false,
color: '#f65774',
type: 'bar'
},
],
应该是需要引入一下