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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

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
Anonymous
Not applicable

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
Anonymous
Not applicable

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

 

Anonymous
Not applicable

Hi @Anonymous ,

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

Anonymous
Not applicable

Found Solution. Add below code to index.js

 

settings: {

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

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.