PivotSortMode Enum
Lists the values that specify how a field’s data should be sorted.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.PivotGrid.v20.2.Core.dll
Declaration
Members
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
|
|
Custom
|
Enables custom sorting of the field’s data using the CustomFieldSort event or the CustomServerModeSort event in OLAP mode. |
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 - it is displayed in the order the data source specifies. This option is in effect only in OLAP mode. |
DimensionAttribute
|
Sorts the field’s data by the OLAP member property (in OLAP mode). Set the PivotGridFieldBase.SortByAttribute property to specify the dimension attribute. |
Related API Members
The following properties accept/return PivotSortMode values:
Remarks
Values listed by this enumeration are used to set the field’s PivotGridFieldBase.SortMode property.
When the field’s SortMode is set to Custom, refer to the platform-specific events for more information:
WinForms | ASP.NET | ASP.NET MVC | WPF |
---|---|---|---|
CustomFieldSort | CustomFieldSort | CustomFieldSort | CustomFieldSort |
When the field’s SortMode is set to Custom in OLAP mode, refer to the platform-specific events for more information:
WinForms | ASP.NET | ASP.NET MVC | WPF |
---|---|---|---|
CustomServerModeSort | CustomServerModeSort | CustomServerModeSort | CustomServerModeSort |
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the PivotSortMode enum.
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.