Skip to main content
Row

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

PivotField.ShowHeaderDropDown Property

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

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v24.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