104
Views
7
Comments
Highchart Tooltip always visible
Question
Application Type
Reactive

Hi I just want to ask whether can I have my line chart with all the tooltips always visible. I don't want the tooltip to display when it being hover. 


2020-09-15 13-07-23
Kilian Hekhuis
 
MVP

Hi Sharifah,

I'm not sure what you're asking. A tooltip only appears on hover, that's standard functionality of Highcharts and other chart libraries. Displaying all tooltips all the time would crowd the chart enormously, and they would all overlap. That's not very useful for a user.

UserImage.jpg
Sharifah Syahirah

I would like to ask whether can I do some Line Chart like this? Is it possible?

2023-07-12 04-21-28
Ivan Maulana

yes, it is possible

you can read documentation hightchart here

2022-12-09 09-54-41
Gaurav Rawat

Hi Sharifah Syahirah,

Can you please share oml file 

2020-09-15 13-07-23
Kilian Hekhuis
 
MVP

Hi Gaurav,

Why should they share their module? They have a perfectly fine chart, but want to know how to do something. Sharing the module in this case doesn't help at all.

2022-12-09 09-54-41
Gaurav Rawat

Hi,

Then I think we should override the mouseout event.

instead of hiding the pop-up on mouseOut, do nothing 

 events: {

                mouseOut: function () {

                   

                }

I think this will solve the issue.

2023-07-12 04-21-28
Ivan Maulana

Hi,

You can add this code in HightJSON code

 tooltip: {

       enabled: false

    },

example from HightChart

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.