原代码默认不显示值
series: [{
name: '平均等待时长',
type: 'bar',
barWidth: 15,
barGap: '0',
barCategoryGap: '0',
data: [],
color: '#0c7dfe',
}]
柱显示值
series: [{
name: '平均等待时长',
type: 'bar',
barWidth: 15,
barGap: '0',
barCategoryGap: '0',
data: [],
color: '#0c7dfe',
itemStyle: {
normal: {
label: {
//是否显示
show: true,
//值位置
position: 'top',
//字体颜色
color: '#FFFFFF',
//当值是0时不显示
formatter: function(params) {
if (params.value > 0) {
return params.value;
} else {
return ' ';
}
},
}
}
},
}]
网友评论