Forum Discussion

anchevski_98's avatar
anchevski_98
Regular Visitor
1 year ago
Solved

[PowerBI Embedded] Page Navigation not appearing when on Mobile Layout.

I have this problem where I am using PowerBI Embedded in my Angular application when I am configuring the embedding for Mobile and Tablets and selecting for layout : LayoutType.MobilePortrait or Layo...
  • Anonymous's avatar
    Anonymous
    1 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 Zhou

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.