echarts图,设置渐变色
series : [
{
name:'直接访问',
type:'bar',
barWidth: '60%',
stack:"空压机",
data:[10, 52, 200, 334, 390, 330, 220],
//柱状图渐变色
itemStyle: {
normal: {
color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [{
offset: 0,
color: “rgba(116,106,57,.6)” // 0% 处的颜色
},{
offset: 1,
color: 'rgba(246,218,53,.6)' // 100% 处的颜色
}], false)
}
}
}
]