cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Tool tip customization

subhak
7 - Data Storage
7 - Data Storage

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 3

harikm007
13 - Data Warehouse
13 - Data Warehouse

Hi @subhak ,

You can use widgetprocessresult event.

 

dashboard.on('widgetprocessresult', function (se, ev) {
    //your script
});

-Hari

 

 

subhak
7 - Data Storage
7 - Data Storage

Hi @harikm007 

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

Regards

subha

 

harikm007
13 - Data Warehouse
13 - 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