Skip to main content
A newer version of this page is available. .

DashboardDesignerDataSourceWizardSettings.AvailableDataSourceTypes Property

Gets or sets data source types available in the Data Source wizard.

Namespace: DevExpress.DashboardWin

Assembly: DevExpress.Dashboard.v20.2.Win.dll

NuGet Packages: DevExpress.Win.Dashboard, DevExpress.WindowsDesktop.Win.Dashboard

Declaration

[DefaultValue(DashboardDesignerDataSourceType.Default)]
public DashboardDesignerDataSourceType AvailableDataSourceTypes { get; set; }

Property Value

Type Default Description
DashboardDesignerDataSourceType **Default**

A DashboardDesignerDataSourceType enumeration value that specifies data source types available in the Data Source wizard.

Property Paths

You can access this nested property as listed below:

Object Type Path to AvailableDataSourceTypes
DashboardDesigner
.DataSourceWizard .AvailableDataSourceTypes

Remarks

The following code snippet displays all available data source types on the Data Source wizard page.

dashboardDesigner1.DataSourceWizard.AvailableDataSourceTypes = DevExpress.DashboardWin.DashboardDesignerDataSourceType.All;

DataSourceWizard_Database

Note

The Data Federation type is available if the dashboard has at least one data source.

See Also