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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
TheMoM
Regular Visitor

Filter function Power BI

Hello everyone, I have a problem in my filter function that is stopping the process, it's simply the targetpages.getvisuals() that is not recognized as a function, i searched everywhere on the net .getvisuals() is what is used from the javascript API of power BI. Anyone can help me please solve this problem? Here's the code below :

Capture d’écran 2024-07-03 170458.png

2 REPLIES 2
Anonymous
Not applicable

Hi  @TheMoM ,

 

You can try checking that before calling getvisuals(), you need to define a variable to receive a specific page before calling its subfunction.

You may refer to the code as below and I hope it could help you to resolve your issue.

report.getPages()
  .then(function (pages) {
    // Retrieve first page.
    var firstPage = pages[0];
    firstPage.getVisuals()
      .then(function (visuals) {
        console.log(visuals);
      })
  })

 

Best Regards,

Liu Yang

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

Yes that's what I did with :

const targetPage = pages[0];

Am I misunderstanding something?

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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