Skip to main content
All docs
V25.1
  • DxReportDesignerWizardSettings.UseFullscreenWizard Property

    Specifies whether to use the Report Wizard version that runs in the fullscreen mode.

    Namespace: DevExpress.Blazor.Reporting

    Assembly: DevExpress.Blazor.Reporting.v25.1.JSBasedControls.Common.dll

    NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls.Common

    Declaration

    [Parameter]
    public bool UseFullscreenWizard { get; set; }

    Property Value

    Type Description
    Boolean

    True, to use the Report Wizard (Fullscreen) version; false, to use the Report Wizard (Popup) version.

    Remarks

    Initially the Report Designer uses the Data Source Wizard (Fullscreen) version.

    The following code snippet demonstrates how to switch to the Report Wizard (Popup) version:

    <DxReportDesigner ReportName="HelloWorld" Height="1000px" Width="100%" AllowMDI="true" >
        <DxReportDesignerWizardSettings UseFullscreenWizard="false" />
    </DxReportDesigner>
    
    See Also