堆叠线图echarts 折线配置项内容和展示

堆叠线图其中一个step设置为true时areaStyle填充错误

配置项如下
      option = {
    title: {
        text: '堆叠线图'
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    },
    yAxis: {},
    series: [{
        type: 'line',
        data:[220, 182, 491, 234, 290, 330, 310],
        stack: '总量',
        areaStyle: {},
        // smooth: true,
        step: true
    }, {
        type: 'line',
        data:[220, 482, 191, 234, 290, 330, 310],
        stack: '总量',
        areaStyle: {},
        // smooth: true
        // step: true
        
    }]
};
    
截图如下