Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxPivotGridOptionsCustomize.Sorting Property

Specifies if end-users can change the sort order of fields.

#Declaration

Delphi
property Sorting: Boolean index 5 read; write; default True;

#Property Value

Type Default
Boolean True

#Remarks

A field can be sorted in either ascending or descending order. The currently applied sort order is indicated by the sort glyph (a triangle icon) displayed within the field header. End-users can change the sort order by clicking the field header. With the Sorting property, you can specify if this operation is available to end-users. Set this property to False to hide the sort glyph and prohibit end-users from changing the sort order of all fields. To control the sort availability for individual pivot grid fields, use the field’s Options.Sorting property. If these properties have opposite values, the False value has priority.

Refer to the Sorting Data topic to learn more.

The default value of the Sorting property is True.

See Also