I want to show the tooltip on the right side of the cursor.
I looked in the documentation/examples but I can\'t find a way to force the tooltips to stay on the right
The better solution to get your tooltip always on the right side of the cursor is the following:
function (labelWidth, labelHeight, point) { return { x: point.plotX + labelWidth / 2 + 20, y: point.plotY + labelHeight / 2 }; }