Recently, I developed a website that integrates PowerBI embedded features.
For the mobile version of the site, I am working on adjusting the layout to center the reports with a margin-left style.
Below are the configuration parameters I have set up:
settings: this.isMobile ? {
filterPaneEnabled: this.reportConfig.filterPaneEnabled,
navContentPaneEnabled: this.reportConfig.navContentPaneEnabled,
layoutType: 0,
customLayout: {
displayOption: 1
}
} :
{
filterPaneEnabled: this.reportConfig.filterPaneEnabled,
navContentPaneEnabled: this.reportConfig.navContentPaneEnabled
}
}