Forum Discussion
[PowerBI Embedded] Page Navigation not appearing when on Mobile Layout.
- Anonymous1 year ago
Hi anchevski_98 ,
As far as I know, the page navigation arrows are visible on embedded reports by default.
let embedConfig = { ... settings: { navContentPaneEnabled: true } };I think you can try to change the position of page navigation.
let embedConfig = { ... settings: { panes:{ pageNavigation: { visible: true, position: PagesPosition.Left } } } };For reference: Configure embedded report settings | Microsoft Learn
You can also refer to this blog for How to embed a report using mobile layout.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi anchevski_98 ,
As far as I know, the page navigation arrows are visible on embedded reports by default.
let embedConfig = {
...
settings: {
navContentPaneEnabled: true
}
};
I think you can try to change the position of page navigation.
let embedConfig = {
...
settings: {
panes:{
pageNavigation: {
visible: true,
position: PagesPosition.Left
}
}
}
};
For reference: Configure embedded report settings | Microsoft Learn
You can also refer to this blog for 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.