What Changed
In v23.1, the default zoom level for the Native Report Viewer component was changed to "Whole Page".
Reasons for Change
In v23.1, we added the PageWidth and WholePage zoom options for Blazor Report Viewer. The DxReportViewer.Zoom property's default value is now set to ZoomConstants.WholePage to make the component behavior consistent with our Web Document Viewer.
Impact on Existing Apps
This change affects user experience in applications with Blazor Report Viewer.
How to Update Existing Apps
The application is updated automatically when you upgrade to v23.1.
How to Revert to Previous Behavior
In previous versions, the default zoom level was set to 100%. To change the zoom level to 100%, set the DxReportViewer.Zoom property to 1
:
Razor<DxReportViewer @ref="reportViewer" Report="Report" Zoom="1"/>