Forum Discussion
Pause visuals from loading
- 4 months ago
The only option is the delayed apply button.
- 4 months ago
Power BI re-renders visuals every time you navigate back to a page, and there is no native setting to preserve scroll position between page navigations. The Pause Visuals option in the Optimize ribbon is a development tool for pausing rendering while authoring, not an end-user feature.
Option 1) As an alternative you couls try using paginated report instead.
Option 2) Build table page navigation buttons as described below video:
https://www.youtube.com/watch?v=TiS6vnju_mI
Hi RossS One option we use for a large table visual is to only show data when the user makes a slicer selection.
Steps to Implement:
Create a Filter Measure: ShowVisual = IF(ISFILTERED('Table'[Column]), 1, 0)
Apply to Visual: Drag this measure into the "Filters on this visual" pane and set it to is 1.