ReportDesignerBuilder.WizardSettings(Action<WizardSettings>) Method
Provides access to the Report Designer‘s wizard settings.
Namespace: DevExpress.AspNetCore.Reporting.ReportDesigner
Assembly: DevExpress.AspNetCore.Reporting.v24.1.dll
NuGet Package: DevExpress.AspNetCore.Reporting
Declaration
Parameters
Name | Type | Description |
---|---|---|
configure | Action<WizardSettings> | A Action<T> delegate method that allows you to specify settings for the Web Report Wizard. |
Returns
Type | Description |
---|---|
ReportDesignerBuilder | A ReportDesignerBuilder that can be used to further configure the Report Designer. |
Remarks
In the delegate method, use the settings that the WizardSettings object exposes.
The default Report Designer implementation uses the Data Source Wizard (Fullscreen) version.
The following code snippet demonstrates how to enable the Report Wizard (Popup) version.
@{
var reportDesigner = Html.DevExpress().ReportDesigner("reportDesigner1")
.Height("1000px")
.Bind("Report")
.WizardSettings(settings => { settings.UseFullscreenWizard = false; });
}
@reportDesigner
See Also