Back to Devexpress

DashboardExtensionsOptionBuilder Class

dashboard-devexpress-dot-dashboardaspnetcore-c415dc8e.md

latest3.8 KB
Original Source

DashboardExtensionsOptionBuilder Class

A wrapper that provides access to the extensions collection.

Namespace : DevExpress.DashboardAspNetCore

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

NuGet Package : DevExpress.AspNetCore.Dashboard

Declaration

csharp
public class DashboardExtensionsOptionBuilder
vb
Public Class DashboardExtensionsOptionBuilder

The following members return DashboardExtensionsOptionBuilder objects:

Remarks

Use the DashboardBuilder.Extensions method to call the DashboardExtensionsOptionBuilder.

The code sample below shows how to use extensions to configure the Web Dashboard:

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

Inheritance

Object DashboardExtensionsOptionBuilder

See Also

DashboardExtensionsOptionBuilder Members

DevExpress.DashboardAspNetCore Namespace