Echarts柱状图顶部加数量显示

//加在series中
itemStyle: {
normal: {
label: {
show: true,
position: 'top',
textStyle: {
color: '#615a5a'
},
formatter:function(params){
if(params.value==0){
return '';
}else
{
return params.value;
}
}
}
}
},
原文地址:https://www.cnblogs.com/0c7x4/p/8177521.html