思路
直接在series
中添加itemStyle
或label
代码
series: [{
type : 'bar',
itemStyle: {
normal: {
label: {
show: true,
position: 'top',
textStyle: {
color: 'black'
}
}
},
},
data : seriesDataArray
}]
series: [{
type : 'bar',
label: {
normal: {
show: true,
position: 'top',
textStyle: {
color: 'white'
}
}
},
data : seriesDataArray
}]