user2990798
user2990798

Reputation: 21

Tooltip text goes out of tooltip when zoom-in

Am using highcharts (Bar Graph) in my project and seems like whenever I zoom-in the text inside the tooltip I misalgined..

Drag the graph down or up in order to zoom-in.

Am using the v2.3.3 version of highcharts.

Here is some screenshots:

enter image description here

enter image description here

Upvotes: 2

Views: 263

Answers (1)

Sridhar R
Sridhar R

Reputation: 20418

Upgrade your highcharts to Latest version 3 solve this problem.Because this is bug in old version

Or

Write position of tooltip manually

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

Upvotes: 1

Related Questions