Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi
I have a PowerBi report with a page navigator embedded in Sharepoint. However, a black border appears when I click on any of the page navigator buttons. Is there any way I can stop this from happening?
Hi @j274 ,
Please refer the following links which has the similar problem as yours to try to fix it:
How do you get rid of the grey border with the report visuals with power bi embedded?
<style>
iframe { border: none; }
</style>
Setting the iframe background for embedded reports (default gray color is terrible)
let embedConfig = {
...
settings: {
background: models.BackgroundType.Transparent
}
};
Best Regards