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

DynamicListLookUpSettings.SortOrder Property

Gets or sets the sort order of parameter values.

Namespace: DevExpress.DashboardCommon

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

Declaration

[LocalizableCategory(DataAccessStringId.PropertyGridDataCategoryName)]
[DefaultValue(DimensionSortOrder.Ascending)]
[DataFieldsBrowser(DataFieldsBrowserDisplayMode.None)]
public DimensionSortOrder SortOrder { get; set; }

Property Value

Type Default Description
DimensionSortOrder **Ascending**

A DimensionSortOrder enumeration value that specifies the sort order of parameter values.

Available values:

Name Description
Ascending

Sort dimension values in ascending order.

Descending

Sort dimension values in descending order.

None

No sorting is applied to dimension values.

Note

Note that this sort order is in effect in OLAP mode only.

Remarks

The Dashboard Parameters dialog displays parameter values in ascending order by default. Use the SortOrder property to specify the sort order manually. You can also use the DynamicListLookUpSettings.SortByMember property to specify the data member whose values are used to apply sorting to displayed parameter values.

See Also