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 |