Skip to main content

PivotGridOptionsCustomization.AllowSort Property

Gets or sets whether end-users can change the sort order of fields.

Namespace: DevExpress.XtraPivotGrid

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

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

Declaration

[DefaultValue(true)]
public bool AllowSort { get; set; }

Property Value

Type Default Description
Boolean true

true to allow end-users to change the sort order of fields; otherwise, false.

Remarks

If the AllowSort property is set to false, the sort glyphs are not displayed within field headers thus preventing end-users from changing the sort order of fields. Individual fields however have a PivotGridFieldOptions.AllowSort property which takes priority over the pivot grid’s AllowSort property.

The sort order of fields can also be changed via code using their PivotGridFieldBase.SortOrder property.

See Also