Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove share bar from power bi public embed

I have a report on power bi which I published on the web and I will create a local page on my computer to view it through embed code and share it with others on dropbox.

I want to remove the button bar which has the social media links to prevent sharing.

Can I also prevent showing iframe source link?

using java script maybe.

please describe in detail ,because I am a data analyst and I can't write java script or html.

thanks

embed code:

<iframe width="600" height="373.5" src="https://app.powerbi.com/view?r=eyJrIjoiYWYzNWU3NjktMjRmOC00NjdkLThlZjktZjEzODRhOWE3MTI4IiwidCI6IjFhYTk1NjRiLTE4YmUtNDU3YS04ZmFjLWEyOTZmNjdjMzU5OSJ9&pageName=ReportSection2" frameborder="0" allowFullScreen="true"></iframe>
like image 499
jennifer adams Avatar asked Oct 28 '25 05:10

jennifer adams


1 Answers

You can absolutely hide it from the initial view. Ignore the not possible folks.

Once you use the Publish to Web feature (IFrame), place that URL in the code below and paste into your site. You will need to adjust the height and width to your desired look. The goal here is to use the clip:rect feature. Adjust the height (in this case, the 1040 is smaller than the original 1080) to restrict/cut off the footer.

<div id="content">
<div style="height:1080px;width:1920px">
   <iframe width="1920" height="1080" src="PUT URL HERE" frameborder="0" style="position:absolute; clip:rect(0px,1920px,1040px,0px);
            bottom:-0px; allowFullScreen=" true"=""></iframe>
    </div>
</div>
like image 199
Solutions Folks Avatar answered Oct 29 '25 17:10

Solutions Folks