matheusbsilva commented on issue #25075: URL: https://github.com/apache/superset/issues/25075#issuecomment-1692278850
Have you tried setting `hideTitle` , `hideTab` and `hideChartControls` options to true on the [embedding sdk](https://github.com/apache/superset/tree/master/superset-embedded-sdk)? ```js embedDashboard({ id: '...', supersetDomain: '...', mountPoint: element, fetchGuestToken: this.fetchGuestToken.bind(this), dashboardUiConfig: { hideTitle: true hideTab: true, hideChartControls: true } }) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
