Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/powerbi/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/email/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html PowerBI嵌入式仪表板桌面/移动_Html_Powerbi_Embed_Desktop - Fatal编程技术网

Html PowerBI嵌入式仪表板桌面/移动

Html PowerBI嵌入式仪表板桌面/移动,html,powerbi,embed,desktop,Html,Powerbi,Embed,Desktop,我想在网页上嵌入PowerBI仪表板。这适用于桌面的经典PowerBI发布到web 当从移动设备访问网页时,是否有一种方式可以动态切换到移动视图 桌面的HTML: <iframe width="900" height="700" src="https://app.powerbi.com/view?r=eyJrIjoiNmI1NTk0MmYtMmQzNy00N2IzLWFiYWQtY2QxNGUzNTI4YzA5IiwidCI6IjE3NTQxNmE2LTI2YzgtNGRmZi1iNWUw

我想在网页上嵌入PowerBI仪表板。这适用于桌面的经典PowerBI发布到web

当从移动设备访问网页时,是否有一种方式可以动态切换到移动视图

桌面的HTML:

<iframe width="900" height="700" src="https://app.powerbi.com/view?r=eyJrIjoiNmI1NTk0MmYtMmQzNy00N2IzLWFiYWQtY2QxNGUzNTI4YzA5IiwidCI6IjE3NTQxNmE2LTI2YzgtNGRmZi1iNWUwLTIwNTk5YjMzODk1ZCIsImMiOjl9" frameborder="0" allowFullScreen="true"></iframe>

否,发布到web不支持手机(移动)视图。如果使用Power BI Embedded API进行嵌入,则可以通过在配置中指定
MobilePortrait
MobileLandCape
布局类型来控制布局。或者,您可以稍后使用以下JavaScript代码更改此设置:

const newSettings = {
    layoutType: models.LayoutType.MobileLandscape
};

report.updateSettings(newSettings);
有关更多信息,请参阅文章