echart折叠条形图数据为0时不显示的解决方案
1: 数据传入时判断如果为0替换成“”。
2: series->label-->formatter里可以配置(回调函数)
label: { normal: { show: true, position: 'insideRight', formatter: function (params) { if (params.value > 0) { return params.value; } else { return ''; } }, }, }
相关推荐
yangkang 2020-11-09
lbyd0 2020-11-17
KANSYOUKYOU 2020-11-16
wushengyong 2020-10-28
腾讯soso团队 2020-11-06
Apsaravod 2020-11-05
PeterChangyb 2020-11-05
gyunwh 2020-11-02