function(){ return this.percentage;}
-- function(){ return "占比\n" + (this.percentage*100).toFixed(2) + "%";}
————————————
function(){ return "占比\n"+this.percentage;}
你的percentage是小数,还是说是百分数?
试试