【v-charts】折线图中堆叠面积图渐变

template

                
                

js

data(){
        this.settings={
                area: true,//是否显示为面积图
                areaStyle: {
                    color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
                        offset: 0,
                        color: 'rgba(1, 91, 100, 0.59)'
                    },{
                        offset: 1,
                        color: 'rgba(2, 92, 100, 0)'
                    }])
                },
          };
}

你可能感兴趣的:(【v-charts】折线图中堆叠面积图渐变)