两条线的数据是一样的,但是显示的时候出现这样的问题
配置项如下
option = {
title: {
text: '堆叠区域图'
},
tooltip: {
trigger: 'axis'
},
legend: {
data: ['邮件营销', '联盟广告']
},
toolbox: {
feature: {
saveAsImage: {}
}
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: [{
type: 'category',
boundaryGap: false,
data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
}],
yAxis: [{
type: 'value'
}],
series: [{
name: '邮件营销',
type: 'line',
stack: '总量',
data: [0, 132, 0, 0, 0, 0, 0]
}, {
name: '联盟广告',
type: 'line',
stack: '总量',
data: [0, 132, 0, 0, 0, 0, 0]
}]
};