Highcharts tooltip always on right side of cursor

前端 未结 2 1340
梦毁少年i
梦毁少年i 2020-12-15 07:35

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

2条回答
  •  春和景丽
    2020-12-15 08:08

    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 
        };
    }
    

提交回复
热议问题