Echarts柱状图顶部加数量显示

//加在series中
itemStyle: {
normal: {
label: {
show: true,
position: 'top',
textStyle: {
color: '#615a5a'
},
formatter:function(params){
if(params.value==0){
return '';
}else
{
return params.value;
}
}
}
}
},

 

posted @ 2018-01-02 15:44  smallf  阅读(811)  评论(0编辑  收藏  举报