PivotGridFieldBase.SortOrder Property
Gets or sets the field's sort order.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.PivotGrid.v20.2.Core.dll
Declaration
[DefaultValue(PivotSortOrder.Ascending)]
public PivotSortOrder SortOrder { get; set; }
<DefaultValue(PivotSortOrder.Ascending)>
Public Property SortOrder As PivotSortOrder
Property Value
Type | Default | Description |
---|---|---|
PivotSortOrder | Ascending |
A PivotSortOrder value that specifies the field's sort order. |
Remarks
Data within the PivotGridControl is always sorted against the fields displayed within Column Header Area and Row Header Area (by default, in ascending order). Use the SortOrder property of these fields to change the current sort order. For other fields, changing the SortOrder property value has no effect on data representation until these fields are placed within the Column Header Area or Row Header Area.
You can also use the PivotGridFieldBase.ChangeSortOrder (synchronous) and PivotGridControl.ChangeFieldSortOrderAsync (asynchronous) methods to toggle a field sort order.
To respond to a field's sort order being changed, handle the PivotGridControl.GridLayout event.