Skip to main content

DynamicListLookUpSettings.DataMember Property

Gets or sets a specific data member in a dashboard data source for a dashboard parameter.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v23.2.Core.dll

NuGet Package: DevExpress.Dashboard.Core

Declaration

[DefaultValue(null)]
[LocalizableCategory(DataAccessStringId.PropertyGridDataCategoryName)]
public string DataMember { get; set; }

Property Value

Type Default Description
String null

A String value that specifies a data member in a dashboard data source for a dashboard parameter.

Remarks

You can specify a data source as a source for dashboard parameter values. To provide access to data source values, specify the following options:

UI Settings Description API
Data Source Specifies the data source for the dashboard parameter. DataSource
Data Member Specifies the name of the data member with the parameter values for SQL and Entity Framework data sources. DataMember
Value Member Specifies the name of the data field for the parameter values. ValueMember
Display Member (optional) Specifies the name of the data field displayed in the Dashboard Parameters dialog as a value description. DisplayMember
Sort By (optional) Specifies the data member used to sort parameter values. SortByMember
Sort Order (optional) Specifies the sort order. SortOrder

Note

You cannot use an OLAP data source as the data source for a dashboard parameter.

The DataMember property is in effect for the DashboardSqlDataSource and DashboardEFDataSource only. For SQL data sources, the data member is a query used to select a specific subset of data. Use the SqlDataSource.Queries property to obtain the available data source queries. Then, assign the name of the query (SqlQuery.Name) to the DataMember property to bind the dashboard parameter values to this query.

The following code snippet shows how to create a dashboard parameter with dynamic look-up values in code. Use the Dashboard.Parameters property of Dashboard to access a collection of dashboard parameters.

DynamicListLookUpSettings settings = new DynamicListLookUpSettings();
settings.DataSource = sqlDataSource;
settings.DataMember = "Categories";
settings.ValueMember = "CategoryID";
settings.DisplayMember = "CategoryName";
settings.SortOrder = DimensionSortOrder.Descending;
DashboardParameter parameter3 = new DashboardParameter("Parameter3", typeof(string), "1", "Select a category:", true, settings);

The following code snippets (auto-collected from DevExpress Examples) contain references to the DataMember property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also