如何实现两条折线之间颜色填充,目前的解决方案是 第一条的数据 areaStyle 填充颜色,第二条数据 areaStyle 填充白色,透明度选项(opacity) 为 1 覆盖掉,但是,负数情况无法打到想要的效果。
Expected behaviour [期望结果]实现两条折线之间颜色填充
ECharts option [ECharts配置项]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: '总量',
areaStyle: {normal: {}},
data:[320, 332, 301, -40, -30, 330, 320]
},
{
name:'最大值',
type:'line',
// stack: '总量',
label: {
normal: {
show: true
}
},
areaStyle: {normal: {
color:'#ffffff',
opacity:1
}},
data:[10, 30, 40, -60, -50, 40, 50]
}
]
};
Other comments [其他信息]