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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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