Hi Team,
I am trying to hide quick sight icon and dashboard name from the embed dashboard in my web application. Currently we are using C#.Net language to create the embed URL.
Attached the screenshot of the things need to be hidden
Hi Team,
I am trying to hide quick sight icon and dashboard name from the embed dashboard in my web application. Currently we are using C#.Net language to create the embed URL.
Attached the screenshot of the things need to be hidden
If your use-case is dashboard embedding, then you can just embed the dashboard.
In your screenshot, you are embedding the QuickSight console. This embeds the complete console experience which would include the logo and dashboard name .
Kind regards,
Koushik
@Koushik_Muthanna
Can you please brief about how can i embed only dashboard…? Does it contains toolbar…?
Have a look at this workshop to get a better understanding on embedding : Workshop Studio , as you are embedding the console , you should be able to try dashboard embedding within the same code.
@Koushik_Muthanna
Yes I gone through the Launch site. In that your saying if you load complete console then toolbar option will appears and if you load only dashboard then it will be hidden am i correct..?
Below is the code i have used for embeding the dashboard
private GenerateEmbedUrlForRegisteredUserRequest GetQSConsoleEmbeddingConfiguration(string userArn, string? dashboardId = null)
{
string initialPath = !string.IsNullOrEmpty(dashboardId) ? $"/dashboards/{dashboardId}" : "/start/dashboards";
return new GenerateEmbedUrlForRegisteredUserRequest
{
AwsAccountId = _options.AccountId,
ExperienceConfiguration = new RegisteredUserEmbeddingExperienceConfiguration
{
QuickSightConsole = new RegisteredUserQuickSightConsoleEmbeddingConfiguration
{
InitialPath = initialPath,
FeatureConfigurations = new RegisteredUserConsoleFeatureConfigurations
{
StatePersistence = new StatePersistenceConfigurations
{
Enabled = false
}
}
}
},
UserArn = userArn
};
}
I tried with embed only dashboard by using below code. In that i can see only left side buttons in the toolbar and right side buttons will get disappeared.
private GenerateEmbedUrlForRegisteredUserRequest GetQSDashboardEmbeddingConfiguration(string userArn, string? dashboardId = null)
{
return new GenerateEmbedUrlForRegisteredUserRequest
{
AwsAccountId = _options.AccountId,
ExperienceConfiguration = new RegisteredUserEmbeddingExperienceConfiguration
{
Dashboard = new RegisteredUserDashboardEmbeddingConfiguration
{
InitialDashboardId = dashboardId,
FeatureConfigurations = new RegisteredUserDashboardFeatureConfigurations
{
StatePersistence = new StatePersistenceConfigurations
{
Enabled = false
}
}
}
},
UserArn = userArn
};
}
In that your saying if you load complete console then toolbar option will appears and if you load only dashboard then it will be hidden am i correct..?
Yes that’s correct .
Use Dashboard as ExperienceConfiguration RegisteredUserEmbeddingExperienceConfiguration - Amazon QuickSight