Echarts柱状图顶部加数量显示

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

 

相关文章:

  • 2021-11-21
  • 2022-01-09
  • 2021-12-30
  • 2022-02-11
  • 2021-05-05
  • 2021-11-23
  • 2022-01-04
猜你喜欢
  • 2021-12-14
  • 2022-02-02
  • 2021-08-18
  • 2021-06-29
  • 2021-08-14
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案