如何設(shè)置echarts中漸變色
如圖
只需要設(shè)置option中的series參數(shù)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)'
}
]
)
}
}
}]
}