Forum Discussion

subhak's avatar
subhak
Data Storage
01-03-2023

Tool tip customization

Hi,

We are writing tool tip customization scripts inside the widget "process result" event. we would like to handle the same logic at dashboard level, which event should we need to use to have the generic script for the tool tip customization for all the widgets.

Any suggestions.

 

3 Replies

Replies have been turned off for this discussion
    • subhak's avatar
      subhak
      Data Storage

      Hi harikm007 

      Thanks for the information. Can we able to use "beforedatapointtooltip" this event at dashboard level?

      Regards

      subha

       

      • harikm007's avatar
        harikm007
        Data Warehouse

        I think its possible. Try this:

        
        dashboard.on('widgetready', function (se, ev) {
        	
        	ev.widget.on('beforedatapointtooltip', function(wse, wev){
        		//Add your script here
        	})
        	
        })
        

        - Hari