Skip to main content
All docs
V25.1
  • DxExcelExportOptions Class

    Contains options related to exporting a dashboard/dashboard item to Excel format

    Namespace: DevExpress.DashboardBlazor

    Assembly: DevExpress.Dashboard.v25.1.Blazor.dll

    NuGet Package: DevExpress.Blazor.Dashboard

    Declaration

    public class DxExcelExportOptions :
        DxSettingsComponent

    Remarks

    The DxExcelExportOptions component contains the DxDashboardExport options related to exporting a dashboard/dashboard item to Excel format.

    @using DevExpress.DashboardCommon
    
    <DxDashboard style="height: 800px;"
                 Endpoint="@endpoint">
        <DxExtensions>
            <DxDashboardExport>
                <DxExcelExportOptions Format="@ExcelFormat.Xlsx"
                                      DashboardStatePosition="@DashboardStateExcelExportPosition.SeparateSheet"
                                      ExportFilters="true">
                </DxExcelExportOptions>
            </DxDashboardExport>
        </DxExtensions>
    </DxDashboard>
    

    Inheritance

    Object
    ComponentBase
    DevExpress.DashboardBlazor.Native.DxSettingsComponent
    DxExcelExportOptions
    See Also