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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Patryn999
Frequent Visitor

PBI Embedded - Fix API Version to stop breaking changes

Hi everyone,

 

Basically I believe the API behaviour has changed, which in turn has broken our client-facing dashboards. Is there any way to force the embedding process to use a fixed API version? Much like the styles are pulled through a version:

https://app.powerbi.com/13.0.9933.297/styles/reportembed.bundle.min.css

 

The situation is that we have had untouched repot (2 weeks) and untouched code (4 weeks) that was running fine, and now the exportdata command used during initial filter conditions on a slicer throws "Export data is not supported for this visual". And this is happening across many reports in different areas of the site.

 

Now I think I know 'Why' - basically we have some filters that need to be controlled only be the web-side to make the interface user-friendly. These are 'hidden' by pushing them behind a white square so they are no longer visible but still operational (changing visibility to not-visible breaks slicer so you can no longer interact with it).

 

However I don't know 'Why now?' this behaviour was fine and now isn't, and from my end we've got untouched codebases that fail in an identical manner which is a pretty strong indicator it wasn't  us.

 

 

1 REPLY 1
Patryn999
Frequent Visitor

Confirmed to have same behaviour with example app "App owns data".

 

If you paste the code below into EmbedReport.cshtml and alter the ID of the slicer to one on your first page you can reproduce the error. Slicer should be available on render but this throws an exception into the console, instead of the slicer selections.

 

report.on("rendered", function () {
        report.getPages().then(function (pages) {
            var page = pages.filter(function (page) { return page.isActive; })[0];
            page.getVisuals().then(function (visuals) {
                var slicer = visuals.filter(function (visual) {
                    return visual.type == "slicer" && visual.name == "d0a7da43b96655bf369e";
                })[0];

                if (slicer) {
                    slicer.exportData().then(function (data) { console.log(data); });
                }
            })

        })
    });

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.