我想格式化气泡图的工具提示,但我需要知道什么属性能让我获得泡泡的大小。
答案 0 :(得分:3)
如果您使用格式化程序功能,您可以执行以下操作:
tooltip :
formatter: function() {
return "My bubble size is : " + this.point.z;
}
}
this.point在气泡图工具提示格式化程序中还具有以下属性:series,x和y
有关详情,请参阅:http://api.highcharts.com/highcharts#tooltip.formatter
答案 1 :(得分:0)
您可以通过在this.point.shapeArgs.r
函数中加入formatter
来获取半径。就像@ scott-gearhart