代碼
series : [
{
name:'金額',
type:'bar',
barWidth: '60%',
data:[10, 52, 200, 334, 390],
barWidth : 30,
itemStyle:{
normal:{
color:function(params) {
// build a color map as your need.
var colorList = [
'#C1232B','#B5C334','#FCCE10','#E87C25','#27727B',
'#FE8463','#9BCA63','#FAD860','#F3A43B','#60C0DD',
'#D7504B','#C6E579','#F4E001','#F0805A','#26C0C0'
];
return colorList[params.dataIndex]
},
label: {
show: true, //開啟顯示
position: 'top', //在上方顯示
textStyle: { //數值樣式
color: 'black',
fontSize: 16,
fontWeight: 600
}
}
}
}
}
]
效果圖
原文鏈接:https://blog.csdn.net/xm393392625/article/details/82114955