Back to Devexpress

PivotSortMode Enum

corelibraries-devexpress-dot-xtrapivotgrid-459d7ae8.md

latest5.0 KB
Original Source

PivotSortMode Enum

Lists the values that specify how a field’s data should be sorted.

Namespace : DevExpress.XtraPivotGrid

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

NuGet Packages : DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

csharp
[ResourceFinder(typeof(ResFinder), "PropertyNamesRes")]
public enum PivotSortMode
vb
<ResourceFinder(GetType(ResFinder), "PropertyNamesRes")>
Public Enum PivotSortMode

Members

NameDescription
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. Set the PivotGridOptionsOLAP.SortByCustomFieldValueDisplayText property to true to sort data by handling the PivotGridControl’s FieldValueDisplayText event.
  • The field is not 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 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.

|

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:

WinFormsASP.NETASP.NET MVCWPF
CustomFieldSortCustomFieldSortCustomFieldSortCustomFieldSort

When the field’s SortMode is set to Custom in OLAP mode, refer to the platform-specific events for more information:

WinFormsASP.NETASP.NET MVCWPF
CustomServerModeSortCustomServerModeSortCustomServerModeSortCustomServerModeSort

See Also

SortMode

DevExpress.XtraPivotGrid Namespace