Try to do this: Open the Dashboard in Edit Mode: Navigate to the dashboard you want to edit. Click on the "Edit" button to enter the edit mode. Access the Source Code: In the top right corner of the dashboard editor, click on the "Source" button to open the JSON source code of the dashboard. Add Custom CSS: Insert a custom CSS block within the JSON to target and hide the export and full-screen icons. To add custom CSS, you need to define a css block within the options field of your dashboard's JSON configuration. Here's a sample of how you can add the custom CSS: json Copia codice {
"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
]
} Save and Verify: Save the changes to the dashboard. Verify that the export and full-screen icons no longer appear when hovering over the icon. you can see if this works
... View more