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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
WellsFang
New Member

updateSettings does not update syncSlicers.visible in View mode for Power BI Embedded reports

Hi Power BI Team,

We are experiencing an issue with Power BI Embedded where `updateSettings` does not update `panes.syncSlicers.visible` when the report is in View mode.

Our scenario is:

1. The report starts in View mode.
2. The user enters Edit mode.
3. We call `updateSettings` to show the Sync Slicers pane:

report.updateSettings({
  panes: {
    syncSlicers: {
      visible: true
    }
  }
});

 

This works as expected.

4. When the user exits Edit mode and the report returns to View mode, we call `updateSettings` again to hide the Sync Slicers pane:

report.updateSettings({
  panes: {
    syncSlicers: {
      visible: false
    }
  }
});

 

However, this does not work. The Sync Slicers pane remains visible.

After testing, it seems that `syncSlicers.visible` can only be toggled while the report is in Edit mode. In View mode, calling `updateSettings` with `syncSlicers.visible = false` has no effect.

Could you please confirm whether this is expected behavior or a bug?

If it is expected behavior, is there a supported way to hide the Sync Slicers pane after switching the embedded report from Edit mode back to View mode?

Thanks.

1 ACCEPTED SOLUTION
v-csrikanth
Community Support
Community Support

Hi @WellsFang 

This is consistent with how the Sync slicers pane behaves in the embed client SDK. Unlike filters or page Navigation(viewer-facing), sync slicers is an edit-mode authoring pane, so setting  syncslicers.visible = false  after returning to View mode has no effect — hence it stays "stuck."


Recommended workaround: Hide it while still in Edit mode, before switching to View:

----------------------------------------------------------
await report.updateSettings({
panes: { syncSlicers: { visible: false } }
});
await report.switchMode("view");

----------------------------------------------------------
Awaiting update settings before switch mode ensures the pane is hidden before the transition.
Alternatively, re-apply your full  panes  config as part of the mode-switch handler.

Thank you,
Srikanth Cheri 
CST Team

View solution in original post

5 REPLIES 5
masonreed11t
Advocate II
Advocate II

This looks like an expected limitation with Embedded reports. The Sync Slicers pane is an Edit mode feature, and updateSettings may not apply pane visibility changes once the report is back in View mode.

You may need to hide it before switching modes or handle the mode transition logic differently. If the behavior is reproducible with the latest SDK, it would be worth opening a Microsoft support ticket to confirm whether this is a bug or an unsupported scenario.

v-csrikanth
Community Support
Community Support

Hi @WellsFang 

We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. And, if you have any further query do let us know.


Thank you.

v-csrikanth
Community Support
Community Support

Hi @WellsFang 
We would like to inquire whether have you got the chance to check the solutions above in commiunity to resolve the issue. We hope the information provided helps to clear the query. Should you have any further queries, kindly feel free to contact the Microsoft Fabric community.


Thank you.

v-csrikanth
Community Support
Community Support

Hi @WellsFang 

This is consistent with how the Sync slicers pane behaves in the embed client SDK. Unlike filters or page Navigation(viewer-facing), sync slicers is an edit-mode authoring pane, so setting  syncslicers.visible = false  after returning to View mode has no effect — hence it stays "stuck."


Recommended workaround: Hide it while still in Edit mode, before switching to View:

----------------------------------------------------------
await report.updateSettings({
panes: { syncSlicers: { visible: false } }
});
await report.switchMode("view");

----------------------------------------------------------
Awaiting update settings before switch mode ensures the pane is hidden before the transition.
Alternatively, re-apply your full  panes  config as part of the mode-switch handler.

Thank you,
Srikanth Cheri 
CST Team

Murtaza_Ghafoor
Super User
Super User

@WellsFang 

 

Yes, this is expected behavior.

The Sync Slicers pane is an editing feature, and its visibility is only maintained while the report is in Edit mode.

Once the report goes back to View mode, report.updateSettings( ) does not control the prominence of the Sync Slicers pane.I hope this will clarify the situation.

If this helps, ✓ Mark as Kudos | Help Others


Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

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.