cancel
Showing results for 
Search instead for 
Did you mean: 

Hide a tooltip from Filters

zohebakber
9 - Travel Pro
9 - Travel Pro

Hi Team, 

I want to delete/hide/remove the tooltip coming from the default filters.

Can someone help in this regard?

Thanks in advance

zohebakber_0-1680694665261.png

 

1 REPLY 1

AssafHanina
Sisense Team Member
Sisense Team Member

Hey @zohebakber ,

Please Paste the following Script in the dashboard Script Editor 
the Script disable the 'Mouseenter' element which enable the Tooltip of the Filters

dashboard.on('widgetready', function(dash) {
const filterElement = $('.ew-i-caption');
filterElement.off('mouseenter');
});

Best Regards

Assaf