Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Jimmy_hu
Frequent Visitor

Move pages from bottom to left with powerbi embed sample codes

Download Powerbi embed sample codes from Github and managed to embed own report to work via .Net core - Embeded to Customers. However, current embeded report's pages in bottom, how can I list pages in Left pane. Checked all .cs codes, didn't find any places can change this design

1 ACCEPTED SOLUTION

Found Solution. Add below code to index.js

 

settings: {

panes: {
pageNavigation: {
visible: true,
position: models.PageNavigationPosition.Left,
}
}

View solution in original post

3 REPLIES 3
Jimmy_hu
Frequent Visitor

Hi YingYinr

 

could you also advise what code file should add your mentioned codes. I didn't find the any embedConfig in sample code

 

Screenshot 2022-03-28 111307.jpg

 

v-yiruan-msft
Community Support
Community Support

Hi @Jimmy_hu ,

Do you want to move the page navigation from the bottom to the left as shown in the image below? If so, you can apply the following codes in sample codes. 

yingyinr_2-1648436128241.png

var embedConfig = {
    ...
    settings: {
        panes: {
            pageNavigation: {
                visible: true,
                position: models.PageNavigationPosition.Left,
            }
        }
    }
};

And you can check the link below for more details.

Change orientation of Power BI page tabs to vertical  (check Message 13 from @kevnotec )

yingyinr_1-1648435899451.png

Page navigation

Best Regards

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

Found Solution. Add below code to index.js

 

settings: {

panes: {
pageNavigation: {
visible: true,
position: models.PageNavigationPosition.Left,
}
}

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.