我正在研究这个例子:http ://www.highcharts.com/demo/combo
当我将鼠标悬停在一些彩色饼图上时,即蓝色的工具提示是
Jane: 13 fruits
但是,当我将鼠标悬停在第一个列(苹果处的蓝色列)时,工具提示是:
Apples: 3
它是简的苹果。那么我怎样才能将其更改为:
Jane : 3 apples
有任何想法吗?
PS:
示例中使用的工具提示格式化程序是:
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+
this.point.name +': '+ this.y +' fruits';
} else {
s = ''+
this.x +': '+ this.y;
}
return s;
}
}