Forum Discussion

Ophir_Buchman's avatar
Ophir_Buchman
Data Integration
06-16-2022

Removing the "Analyze It" button from your Dashboard Widgets

When sharing a dashboard you might want to prevent the user from seeing the "Analyze It" buttons on the widget's title bar

 

Add the following dashboard script:

dashboard.on('widgetready', function(dash) {
$('.analyze-it-button').remove()
})
Before After