Skip to main content
All docs
V25.1
  • DashboardExtensionsOptionBuilder.DesignerToolbar(Action<DesignerToolbarOptionBuilder>) Method

    Allows you to use the DesignerToolbarExtension.

    Namespace: DevExpress.DashboardAspNetCore

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

    NuGet Package: DevExpress.AspNetCore.Dashboard

    Declaration

    public DashboardExtensionsOptionBuilder DesignerToolbar(
        Action<DesignerToolbarOptionBuilder> config
    )

    Parameters

    Name Type Description
    config Action<DesignerToolbarOptionBuilder>

    A delegate used to configure the DataSourceWizardOptionBuilder.

    Returns

    Type Description
    DashboardExtensionsOptionBuilder

    A reference to this instance after the operation has completed.

    Remarks

    The code sample below shows how to configure the DesignerToolbarExtension options:

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