power bi report server嵌入web后隐藏筛选面板

宦翔
2023-12-01

通过在页面写CSS样式来隐藏:

 <style>        
        #itemshield {
            position: relative;
            float: right;
            width: 34px;
            height: 750px;
            background: #eaeaea;
        }
          .panel {
            position: relative;
            height: 0;
            overflow: hidden;
        }
 
        .panelcontainer {
            padding-bottom: 56.25%;
        }
        
        .panel iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
        }
    </style>

 

 类似资料: