echart饼图数据为0时不显示label 1.问题 饼图展示只有一数据有值,其他都是0,饼图内部只展示一条label,目前展示了两条,需要进行处理 2.解决办法 对数据进行过滤处理,对后端传过来的数据加上两个属性,先对传过来的数组对象进行遍历,加上对应属性,再进行过滤处理 //data是对应数组对象data.forEach((item) =>{ ...
normal: { show:true, position:'insideRight', formatter:function(params) { if(params.value > 0) { returnparams.value; }else{ return''; } }, }, }