Skip to main content

DataSourceWizardOptionBuilder Class

A wrapper that provides access to DataSourceWizardExtensionOptions.

Namespace: DevExpress.DashboardAspNetCore

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

NuGet Package: DevExpress.AspNetCore.Dashboard

Declaration

public class DataSourceWizardOptionBuilder

Remarks

The code sample below shows how to configure the Data Source Wizard options:

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

Inheritance

Object
DataSourceWizardOptionBuilder
See Also