Back to Devexpress

DashboardExportOptionBuilder Class

dashboard-devexpress-dot-dashboardaspnetcore-ac129745.md

latest3.3 KB
Original Source

DashboardExportOptionBuilder Class

A wrapper that provides access to DashboardExportExtensionOptions.

Namespace : DevExpress.DashboardAspNetCore

Assembly : DevExpress.Dashboard.v25.2.AspNetCore.dll

NuGet Package : DevExpress.AspNetCore.Dashboard

Declaration

csharp
public class DashboardExportOptionBuilder
vb
Public Class DashboardExportOptionBuilder

The following members return DashboardExportOptionBuilder objects:

Remarks

The code sample below shows how to configure export options:

cshtml
@(Html.DevExpress().Dashboard("dashboardControl1")
    .Width("100%")
    .Height("100%")
    .OnBeforeRender("onBeforeRender")
    .Extensions(ext => {
        ext.DashboardExport(options => {
            // ...
        });
    })
)

Inheritance

Object DashboardExportOptionBuilder

See Also

DashboardExportOptionBuilder Members

Manage Exporting Capabilities in ASP.NET Core

DevExpress.DashboardAspNetCore Namespace