Skip to main content
A newer version of this page is available. .

DashboardExportOptionBuilder Class

A wrapper that provides access to DashboardExportExtensionOptions.

Namespace: DevExpress.DashboardAspNetCore

Assembly: DevExpress.Dashboard.v19.1.AspNetCore.dll

Declaration

public class DashboardExportOptionBuilder

Remarks

The code sample below shows how to configure export options:

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

Inheritance

Object
DashboardExportOptionBuilder
See Also