DashboardExtensionsOptionBuilder.DataSourceWizard(Action<DataSourceWizardOptionBuilder>) Method
In This Article
Allows you to use the DataSourceWizard extension.
Namespace: DevExpress.DashboardAspNetCore
Assembly: DevExpress.Dashboard.v24.2.AspNetCore.dll
NuGet Package: DevExpress.AspNetCore.Dashboard
#Declaration
public DashboardExtensionsOptionBuilder DataSourceWizard(
Action<DataSourceWizardOptionBuilder> config
)
#Parameters
Name | Type | Description |
---|---|---|
config | Action<Data |
A delegate used to configure the Data |
#Returns
Type | Description |
---|---|
Dashboard |
A reference to this instance after the operation has completed. |
#Remarks
The code sample below shows how to configure the Data Source Wizard options:
cshtml
@(Html.DevExpress().Dashboard("dashboardControl1")
.Width("100%")
.Height("100%")
.OnBeforeRender("onBeforeRender")
.Extensions(ext => {
ext.DataSourceWizard(options => {
// ...
});
})
)
See Also