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.v25.1.dll
NuGet Package: DevExpress.Data
Declaration
[DataMember(Name = "enableFederationDataSource")]
public bool EnableFederationDataSource { get; set; }
Property Value
| Type | Description |
|---|---|
| Boolean |
|
Property Paths
You can access this nested property as listed below:
| Object Type | Path to EnableFederationDataSource |
|---|---|
| ReportDesignerSettingsBase |
|
Remarks
The following image shows how the EnableFederationDataSource option affects the Select data source type wizard page:

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