Skip to main content
All docs
V23.2

DxPdfExportOptions.DocumentScaleMode Property

Specifies a dashboard / dashboard item scaling mode in the exported document.

Namespace: DevExpress.DashboardBlazor

Assembly: DevExpress.Dashboard.v23.2.Blazor.dll

NuGet Package: DevExpress.Blazor.Dashboard

Declaration

[Parameter]
public DashboardExportDocumentScaleMode DocumentScaleMode { get; set; }

Property Value

Type Description
DashboardExportDocumentScaleMode

A value that specifies the mode for scaling a dashboard/dashboard item in the exported document.

Available values:

Name Description
None

The dashboard / dashboard item on the exported page retains its original size.

UseScaleFactor

The size of the dashboard / dashboard item on the exported page is changed according to the scale factor value.

AutoFitToPagesWidth

The size of the dashboard / dashboard item is changed according to the width of the exported pages.

Remarks

To change the size of the dashboard or split it into several pages, use the DocumentScaleMode property and specify the following export options depending on the selected mode:

Scale Mode Related Property Description
AutoFitToPagesWidth AutoFitPageCount Splits the dashboard into multiple pages and aligns it.
UseScaleFactor ScaleFactor Scales the dashboard.
None n/a The dashboard size is fixed, and other dashboard scaling settings are not in effect.
See Also