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 am looking for a solution to capture bookmark state of all pages of a Power BI report in angular. I have tried below code to capture all state of bookmarks.
let capturedBookmark = await this.report.bookmarksManager.capture({
allPages: true,
personalizeVisuals: true
});
When I am exporting it to pdf , I can able to see only Global filters applied and pagelevel unique filters changes not applied.
I have tried capturing at a pagelevel using "datachanged" event, but I can achieve only pagelevel filters not global filters.
Note: Global filter are Industry, Region,Size,Non-profit organization and government contractor. Pagelevel Unique filters are Comparison Plantype and Client Plans.
UI
PDF
Can you help me to solve the above issue?