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

PivotGridFieldBase.SortMode Property

Gets or sets how the field’s data is sorted when sorting is applied to it.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v17.2.Core.dll

Declaration

[XtraSerializableProperty(0)]
[DefaultValue(PivotSortMode.Default)]
[XtraSerializablePropertyId(2)]
public PivotSortMode SortMode { get; set; }

Property Value

Type Default Description
PivotSortMode

Default

A PivotSortMode value that specifies how the field’s data is sorted in sort mode.

Available values:

Name Description
Default

Sorts the field’s data by the field’s values (these are synchronized with the values from the bound data source).

Value

Sorts the field’s data by the field’s values (these are synchronized with the values from the bound data source).

DisplayText

Sorts the field’s data by the field’s display text (the strings displayed within the field values).

In OLAP mode, the data is sorted against the text generated on the server. The field will not be sorted against the custom text generated on the client side (for instance, if you modify the text via the PivotGridControl.FieldValueDisplayText event).

Custom

Enables custom sorting of the field’s data using the PivotGridControl.CustomFieldSort event.

To sort data in OLAP mode, use the PivotGridControl.CustomServerModeSort event.

Key

Sorts the field’s data by key attributes (in OLAP mode).

ID

Sorts by a level member’s ID (in OLAP mode).

None

Data is not sorted, and it’s displayed in the order specified by the data source. This option is in effect only in OLAP mode.

DimensionAttribute

Sorts the field’s data by the OLAP member property (in OLAP mode).

Remarks

The SortMode property determines the algorithm used to sort the field’s data (by display text, edit value or using a custom sorting algorithm).

To provide custom sorting, set the SortMode property to PivotSortMode.Custom and handle the PivotGridControl.CustomFieldSort event. To provide custom sorting in OLAP and server mode, handle the PivotGridControl.CustomServerModeSort event. To sort the pivot grid field’s data by an OLAP member property, set the SortMode property to PivotSortMode.DimensionAttribute and assign the property name to PivotGridFieldBase.SortByAttribute property.

To apply sorting to a field, set the field’s PivotGridFieldBase.SortOrder property to PivotSortOrder.Ascending or PivotSortOrder.Descending. This will arrange the field’s values in ascending or descending order using the algorithm that is specified by the SortMode property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the SortMode 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