help me everyone .how to stop the tooltip from working when there is no data inside the tooltip
thank
Hi @phuc hoang ,
like anything else, you can decide for the tooltip to be there or not by wrapping it in an If
dependent on what exactly you want, you'll also have to repeat the content part in the else of that if
see this example, the title is always shown (blue, repeated in the else on it's own) but only in case of a tooltip text (see condition at the bottom) it will have a tooltip linked to it
in contrast, the question mark icon in the second tooltip (green), dissappears together with the tooltip if no text is to be shown. So no need to put anything in the else for this one.
Dorine
Hi @phuc hoang
As Dorine said best is use IF statement if there is data in variable use tool tip or not then simply show that variable without tool tip.
Thanks
Arun
thank you