Skip to main content

DynamicListLookUpSettings.SortOrder Property

Gets or sets the sort order of dashboard parameter values.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

#Declaration

[DataFieldsBrowser(DataFieldsBrowserDisplayMode.None)]
[DefaultValue(DimensionSortOrder.Ascending)]
[LocalizableCategory(DataAccessStringId.PropertyGridDataCategoryName)]
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