看你系列在上面还是在下面。我的在上面就用point[1].value/point[0].value 你的在下面就用
point[0].value/point[1].value
------------------------
function(){
var point=this.points;
if(this.seriesName=="ColName3"){
return this.value +"<br>"+((point[1].value/point[0].value).toFixed(2))*100+"%";
}
else {
return this.value;
}
}
----------------