Set initial zoom level for DxReportViewer to 130%

Added a `Zoom` property with a value of `1.3` to the `DxReportViewer` component in `ReportViewer.razor`. This change adjusts the default display scale to improve readability and enhance the user experience.
This commit is contained in:
2026-06-01 03:21:04 +02:00
parent 638c6f3291
commit d657f3825c

View File

@@ -168,7 +168,7 @@ Shown="OnPopupShownAsync">
<div class="receiver-viewer-wrapper">
@if(Report is not null) {
<DxReportViewer @key="ViewerKey" @ref="reportViewer" Report="Report" RootCssClasses="w-100 h-100" />
<DxReportViewer @key="ViewerKey" @ref="reportViewer" Report="Report" RootCssClasses="w-100 h-100" Zoom="1.3" />
}
</div>