The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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