Reputation: 21
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:
Upvotes: 2
Views: 263
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