Highcharts - Show tooltip on points click instead mouseover

前端 未结 5 1766
无人共我
无人共我 2020-12-03 16:20

Is it possible to have tool tip on clicking of points instead of mouse move.

I have tried with showing values in java script alert as below

plotOpti         


        
5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-03 16:58

    The problem of first mouse-over tooltip showing in Alexandra Espichán excellent fiddle can be solved via css and the mouseover event omit by replacing his invisibility class with:

    .highcharts-tooltip:not(.clone){
        visibility: hidden !important;
    }
    

提交回复
热议问题