DataSourceWizardOptionBuilder Class
In This Article
A wrapper that provides access to DataSourceWizardExtensionOptions.
Namespace: DevExpress.DashboardAspNetCore
Assembly: DevExpress.Dashboard.v24.2.AspNetCore.dll
NuGet Package: DevExpress.AspNetCore.Dashboard
#Declaration
#Related API Members
The following members return DataSourceWizardOptionBuilder objects:
#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