The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
How to hide/collapse visualizations pane and fields pane when embedded report opens in edit mode.
For example, I have embedded reports into my application, when the report opens in edit mode, It's by default expanding visualizations and fields pane. Can you please suggest how to hide/collapse visualizations and fields pane when the report opens in edit mode?
please use below report config
settings: {
background: models.BackgroundType.Default,
panes: {
fields: {
expanded: false
},
filters: {
visible: true
},
pageNavigation: {
visible: true
},
visualizations: {
expanded: false
}
}
}
@Anonymous Please forgive my rudementary knowledge. Where would I place that code? Would insert this code into a New Measure for every table?