隐藏前标签样式
问题说明:有系列A,B,C,D需要进行上图这种形式进行展示,但是其中有0的,不需要展示,所以需要隐藏0修改样式中标签为自定义:
修改之后的效果图如下:
JS代码:
function(){ if (this.value==0) { return '<table style="color:'+this.color+';>'+'</table>' } else return this.value;}