如何设置echarts中渐变色

如何设置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)'
              }
            ]
          )
        }
      }
    }]
}

你可能感兴趣的:(如何设置echarts中渐变色)