放大时,工具提示文本不在工具提示中

时间:2013-11-14 11:43:49

标签: javascript jquery highcharts

在我的项目中使用highcharts(条形图),似乎每当我放大工具提示中的文本时,我都会误解。

向下或向上拖动图表以放大。

使用v2.3.3版本的highcharts。

以下是一些截图:

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

将你的highcharts升级到最新版本3解决了这个问题。因为这是旧版本中的错误

手动编写工具提示的位置

tooltip: {
   positioner: 
      function(boxWidth, boxHeight, point) {         
         return {x:point.plotX + 20, y:point.plotY - 20
      };         
   }
}