使用 ECharts 写柱状图的时候,报 Cannot read properties of undefined (reading 'coordinateSystem')的错误,
原因:
在 option 配置项中,只写了 xAxis:{} 没有写 yAxis:{} , 而 xAxis与yAxis 是一对,不能单写一个
// 指定图表的配置项和数据
var option = {
// X轴配置项
xAxis: {
data: ['电器', '数码', '衣服', '零食', '水果']
},
// Y轴配置项
/* yAxis: {
// 是否显示坐标轴轴线
axisLine: {
show: true,
},
// 是否显示坐标轴刻度
axisTick: {
show: true,
}
} */
}