Forum Discussion
firstch
4 years agoHelper III
Embedded power BI Mobile Layout doesn't work
Hi everyone please help , how to embedded power BI with mobile view this is my code that i have input config in file name "/Authenticate-ServicePrincipal/Embed for your customers/Embedded repor...
Anonymous
3 years agoNot applicable
Hi firstch ,
There are two layout types dedicated to mobile devices:
-
MobilePortrait - Optimized for portrait view. This is the mobile layout you created for your report. -
MobileLandscape - Optimized for landscape view. This is the regular layout of your report.
For example, the following code shows how to embed the report with a mobile layout.
// Get models. models contains enums that can be used.
var models = window['powerbi-client'].models;
var embedConfiguration = {
type: 'report',
id: reportId,
embedUrl: embedUrl,
tokenType: tokenType,
accessToken: accessToken,
settings: {
layoutType: models.LayoutType.MobilePortrait
}
};
You may refer to this offical blog to learn more details about how to embed a report using mobile layout.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.