Vue

如何设置echarts中渐变色

2019-02-27  本文已影响0人  小飞哥_

如何设置echarts中渐变色

如图


image.png

只需要设置option中的series参数areaStyle即可,例如:

var option = {
xAxis:{
  xxx:xxx
},
yAxis:{
  xxx:xxx
},
series:[{
      areaStyle: {
        normal: {
          color: new echarts.graphic.LinearGradient(
            0, 0, 0, 1, [{
                offset: 0,
                color: '#64B2ED'
              },
              {
                offset: 1,
                color: 'rgba(100,178,237,0.1)'
              }
            ]
          )
        }
      }
    }]
}

上一篇 下一篇

猜你喜欢

热点阅读