Skip to main content

DashboardExtensionsOptionBuilder Class

A wrapper that provides access to the extensions collection.

Namespace: DevExpress.DashboardAspNetCore

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

NuGet Package: DevExpress.AspNetCore.Dashboard

Declaration

public class DashboardExtensionsOptionBuilder

Remarks

Use the DashboardBuilder.Extensions method to call the DashboardExtensionsOptionBuilder.

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

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

Inheritance

Object
DashboardExtensionsOptionBuilder
See Also