Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ReportDesignerBuilder.WizardSettings(Action<WizardSettings>) Method

Provides access to the Report Designer‘s wizard settings.

Namespace: DevExpress.AspNetCore.Reporting.ReportDesigner

Assembly: DevExpress.AspNetCore.Reporting.v24.2.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