In a Dashboard Studio: I applied drilldown to one of the standard icons and linked to another dashboard.
The goal is to view the linked dashboard upon clicking on the icon, and it works.
However, people get distracted when they place mouse upon the icon and the export and Full screen icons pump up. Is there a way to disable this default unneeded functionality so nothings pumps up on mouse hovering over an icon ?
Hi @av_ - this is not currently supported but we have heard this feedback before and have it prioritized on our roadmap to address. Stay tuned for updates!
Hi @elizabethl_splu,
Good day, is this implemented already? I have a requirement to hide job inspect, full screen and refresh which comes up upon mouse hovering on icons/single values, i was able to hide search and export using this doc Apply view mode settings for dashboards but I can't find any doc related to hiding the other options.
Thanks in advance!
Try to do this:
Open the Dashboard in Edit Mode:
Access the Source Code:
Add Custom CSS:
Here's a sample of how you can add the custom CSS:
{
"type": "dashboard",
"title": "Your Dashboard Title",
"options": {
"css": ".dashboard-panel .dashboard-panel-action { display: none !important; }"
},
"visualizations": [
{
"type": "icon",
"options": {
"title": "Your Icon Title",
"drilldown": {
"type": "link",
"dashboard": "linked_dashboard_name"
}
}
}
// Add other visualizations here
]
}