DashboardExportOptionBuilder Class
Namespace: DevExpress.DashboardAspNetCore
Assembly: DevExpress.Dashboard.v19.2.AspNetCore.dll
Declaration
public class DashboardExportOptionBuilder
Public Class DashboardExportOptionBuilder
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 => {
// ...
});
});
})
)
Object
DashboardExportOptionBuilder
See Also