dashboard-devexpress-dot-dashboardwin-dot-dashboarddesignerdatasourcewizardsettings-e2f0fc99.md
Gets or sets data source types available in the Data Source wizard.
Namespace : DevExpress.DashboardWin
Assembly : DevExpress.Dashboard.v25.2.Win.dll
NuGet Package : DevExpress.Win.Dashboard
[DefaultValue(DashboardDesignerDataSourceType.Default)]
public DashboardDesignerDataSourceType AvailableDataSourceTypes { get; set; }
<DefaultValue(DashboardDesignerDataSourceType.Default)>
Public Property AvailableDataSourceTypes As DashboardDesignerDataSourceType
| Type | Default | Description |
|---|---|---|
| DashboardDesignerDataSourceType | Default |
A DashboardDesignerDataSourceType enumeration value that specifies data source types available in the Data Source wizard.
|
Available values:
Show 12 items
| Name | Description |
|---|---|
| Sql |
Identifies the Database data source type.
| | Olap |
Identifies the Olap data source type.
| | Object |
Identifies the Object Binding data source type.
| | EF |
Identifies the Entity Framework data source type.
| | Excel |
Identifies the Microsoft Excel workbook / CSV file data source type.
| | Extract |
Identifies the Data Extract data source type.
| | Federation |
Identifies the Data Federation data source type.
| | Json |
Identifies the JSON data source type.
| | XPO |
Identifies the XPO (eXpress Persistent Object) data source type.
| | MongoDB |
Identifies the MongoDB data source type.
| | Default |
The default set of data source types is displayed in the Data Source wizard.
| | All |
All supported data source types are displayed in the Data Source wizard.
|
You can access this nested property as listed below:
| Object Type | Path to AvailableDataSourceTypes |
|---|---|
| DashboardDesigner |
.DataSourceWizard .AvailableDataSourceTypes
|
The following code snippet displays all available data source types on the Data Source wizard page:
dashboardDesigner1.DataSourceWizard.AvailableDataSourceTypes = DevExpress.DashboardWin.DashboardDesignerDataSourceType.All;
dashboardDesigner1.DataSourceWizard.AvailableDataSourceTypes = DevExpress.DashboardWin.DashboardDesignerDataSourceType.All
The Data Federation type is available if the dashboard has at least one data source.
The XPO Data Source is hidden from the list of data sources available in the Data Source Wizard. Use the DashboardDesignerDataSourceWizardSettings.AvailableDataSourceTypes property to specify the data connections displayed on the page.
See Also
DashboardDesignerDataSourceWizardSettings Class