echarts折线图设置渐变色

series: [
   {
       type: 'line',
       areaStyle: {
            color: {
              type: 'linear',
              x: 0,
              y: 0,
              x2: 0,
              y2: 1,
              colorStops: [{
                offset: 0, color: 'rgba(125,72,255,0.5)'
              }, {
                offset: 1, color: 'rgba(0,180,255,0.3)'
              } ],
              global: false
            }
      },

    }       
]            

 

 

 

设置折线图颜色为渐变色,效果如下图

 

posted @ 2021-11-19 09:20  我的世界蹦擦擦  Views(2098)  Comments(0Edit  收藏  举报