Skip to main content
Row

PivotField.ShowHeaderDropDown Property

Specifies whether or not to show a drop-down button on the field header.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

bool ShowHeaderDropDown { get; set; }

Property Value

Type Description
Boolean

true to show the drop-down button for the field; otherwise, false.

Remarks

The following example hides the drop-down button for the Product field. End users cannot sort or filter field items.

pivotTable.Fields["Product"].ShowHeaderDropDown = false;

Hide a drop-down button for the pivot field

See Also