现在标准的逻辑就是
分母0或者空,仪表盘默认为100,
-------------------------------------------
可以在SQL中判断一下,如果分母为0或是空,赋值一个特别大的比如99999999
在标签显示的时候,判断就行了
function(){
if(this.targetValue==99999999 )
{
return this.category+this.value+'/0';
}
else
{ return this.category+this.value+'/'+this.targetValue;}}