Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Guys, I am playing around with Power BI Embedded Dashboards, and one thing I have found that Dashboard actually has a switch to turn into mobile friednly view:
Check this:
This happens if the size of the Iframe less than 320px!!!
Can anybody from MSFT help on how to make it responsive not only for devices with width less than 320px?
Thanks
Nick
Solved! Go to Solution.
@nicksav wrote:
Guys, I am playing around with Power BI Embedded Dashboards, and one thing I have found that Dashboard actually has a switch to turn into mobile friednly view:
Check this:
This happens if the size of the Iframe less than 320px!!!
Can anybody from MSFT help on how to make it responsive not only for devices with width less than 320px?
Thanks
Nick
AFAIK, Embedded Power BI dashboards won't auto fit the resolution to have a mobile friendly layout. As a workaround, in Javascript code, you can detect the screen resolution and then determine whether embedding in "fitToWidth" or "oneColumn".
var config = { type: 'dashboard', tokenType: models.TokenType.Embed, accessToken: accessToken, embedUrl: embedUrl, //pageView: "fitToWidth", pageView: "oneColumn", id: embedDashboardId };
OneColumn(left) VS fitToWidth(right).
@nicksav wrote:
Guys, I am playing around with Power BI Embedded Dashboards, and one thing I have found that Dashboard actually has a switch to turn into mobile friednly view:
Check this:
This happens if the size of the Iframe less than 320px!!!
Can anybody from MSFT help on how to make it responsive not only for devices with width less than 320px?
Thanks
Nick
AFAIK, Embedded Power BI dashboards won't auto fit the resolution to have a mobile friendly layout. As a workaround, in Javascript code, you can detect the screen resolution and then determine whether embedding in "fitToWidth" or "oneColumn".
var config = { type: 'dashboard', tokenType: models.TokenType.Embed, accessToken: accessToken, embedUrl: embedUrl, //pageView: "fitToWidth", pageView: "oneColumn", id: embedDashboardId };
OneColumn(left) VS fitToWidth(right).
hello @Eric_Zhang
A question,
If OneColumn is determined by small screen resolution, who determines the position of the graphics? Does it do it automatically or do you have to design something in advance?
User | Count |
---|---|
5 | |
5 | |
3 | |
2 | |
2 |
User | Count |
---|---|
9 | |
7 | |
5 | |
4 | |
4 |