Skip to main content
All docs
V23.2

WizardSettings.EnableFederationDataSource Property

Allows you to hide the Data Federation option and related pages in the Data Source Wizard.

Namespace: DevExpress.XtraReports.Web.ReportDesigner.DataContracts

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

[DataMember(Name = "enableFederationDataSource")]
public bool EnableFederationDataSource { get; set; }

Property Value

Type Description
Boolean

true to enable the Data Federation option; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to EnableFederationDataSource
ReportDesignerSettingsBase
.WizardSettings .EnableFederationDataSource

Remarks

The following image shows how the EnableFederationDataSource option affects the Select data source type wizard page:

EnableFederationDataSource

The following code disables the EnableFederationDataSource option:

var designerRender = Html.DevExpress().ReportDesigner("reportDesigner")
            .Height("100%")
            .WizardSettings(s => s.EnableFederationDataSource = false)
            .Bind("TestReport");
@designerRender.RenderHtml()
See Also