Forum Discussion
Anonymous
4 years agoNot 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 i...
- Anonymous4 years ago
Found Solution. Add below code to index.js
settings: {
panes: {
pageNavigation: {
visible: true,
position: models.PageNavigationPosition.Left,
}
}
Anonymous
4 years agoNot 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.
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 )
Best Regards
Anonymous
4 years agoNot applicable
Found Solution. Add below code to index.js
settings: {
panes: {
pageNavigation: {
visible: true,
position: models.PageNavigationPosition.Left,
}
}