Skip to main content
All docs
V25.1
  • Row

    PivotField.ShowHeaderDropDown Property

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

    Namespace: DevExpress.Spreadsheet

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