Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Extract powerbi report to pdf in salesforce

Hi team,

 

Can anyone help me understanding, how to use the powerbi javascript api's in lwc component, 

and achieve the following capabilities :

 

1. export to pdf,ppt

2. full screen 

 

Like how do i call the powerbi javascript api methods "function fullscreen()" into my javascript function on the event onclick.

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

Sorry, I don't familiar with LWC in salesforce.

Similar to calling function fullscreen() in JavaScript, you can try the following method.

1. Add a button to the page:

 

<button id="myLink" onclick="fullscreen()">Fullscreen</button>

2. Add the javascript to get the report container id and open it in fullscreen mode:

 

<script type="text/javascript">
    function fullscreen() {
        // Get a reference to the embedded report HTML element
        var embedContainer = $('#reportContainer')[0];

        // Get a reference to the embedded report.
        report = powerbi.get(embedContainer);

        // Displays the report in full screen mode.
        report.fullscreen();
    }
</script>

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

Sorry, I don't familiar with LWC in salesforce.

Similar to calling function fullscreen() in JavaScript, you can try the following method.

1. Add a button to the page:

 

<button id="myLink" onclick="fullscreen()">Fullscreen</button>

2. Add the javascript to get the report container id and open it in fullscreen mode:

 

<script type="text/javascript">
    function fullscreen() {
        // Get a reference to the embedded report HTML element
        var embedContainer = $('#reportContainer')[0];

        // Get a reference to the embedded report.
        report = powerbi.get(embedContainer);

        // Displays the report in full screen mode.
        report.fullscreen();
    }
</script>

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.