如何实现仪表盘超1变色
可以通过标签颜色来区别,自定义标签,超过100%,红色
function(){ if(this.percentage>1){
return '<span style="color:red;">'+(this.percentage*100).toFixed(2)+'%'+'';
}else{
return (this.percentage*100).toFixed(2)+'%';
}
不支持~