Highcharts泡泡图 - 如何获得点的大小

时间:2013-03-28 02:30:20

标签: size highcharts bubble-chart

我想格式化气泡图的工具提示,但我需要知道什么属性能让我获得泡泡的大小。

2 个答案:

答案 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

的解决方案一样