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

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_23502409/article/details/88528263

通过在页面写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>

猜你喜欢

转载自blog.csdn.net/qq_23502409/article/details/88528263