User Profile
idelix
Frequent Visitor
Joined 5 years ago
User Widgets
Contributions
Change default share button link on published to web reports
I need to change default share link on reports which were published using "publish to web option" currently it points to link "https://app.powerbi.com/view?..." I want to change it to my website link "https://www.mywebsite.com" I know it is possible as it was achiveed on this website here https://covid19.ucy.ac.cy/ if you click on share button it will try to share website "https://covid19.ucy.ac.cy/" and not "https://app.powerbi.com/view?..." So the question is how they done it ?1.2KViews0likes2CommentsOpen report from dashboard tile - using PowerBI-JavaScript embedded
I'm embeddingd dashboard on website using following code, hovewer not sure how can I configure it to open external linke when I click on the tile in dashboard, as I could put the actual embeded report under this external link var embedConfiguration = { type: 'dashboard', tokenType: models.TokenType.Embed, accessToken: "embed_token", id: 'dashboard_id', embedUrl: 'https://app.powerbi.com/dashboardEmbed', // settings: { // layoutType: models.LayoutType.MobilePortrait // }, pageView: 'fitToWidth' // pageView: "oneColumn" };317Views0likes0CommentsPowerBI-JavaScript - Embed For Mobile does not work work for dashboards
I'm using PowerBI-JavaScript to show dashboard mobile view on the website and it doesn't work, it is fine when I choose type: report then the MobilePortrait layout is applied but with dashboard, this layout is completely ignored and the default MobileLandscape layout is shown instead. I would expect that embedding mobile layout will work for reports and dashboards: https://github.com/Microsoft/PowerBI-JavaScript/wiki/Embed-For-Mobile var models = window['powerbi-client'].models; var permissions = models.Permissions.All; var embedConfiguration = { type: 'dashboard', tokenType: models.TokenType.Embed, accessToken: "<some token>", id: '<dashboard id>', embedUrl: 'https://app.powerbi.com/dashboardEmbed', settings: { layoutType: models.LayoutType.MobilePortrait } // pageView: 'fitToWidth', }; var embedContainer = $('#reportContainer')[0]; report = powerbi.embed(reportContainer, embedConfiguration);471Views0likes0Commentsembedded report container height to large
I'm using https://github.com/microsoft/PowerBI-JavaScript to embed two reports on the website and noticed that height off div.displayAreaViewport is way too large then the report itself making huge whitespace between reports iframes is there a way to influence heigh of iframe in a way that it will render properly as the width of website changes853Views0likes0Comments
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.