Skip to main content

PivotGridControl.GroupFieldsInFieldList Property

Gets or sets whether hidden fields are grouped within the Field List. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public bool GroupFieldsInFieldList { get; set; }

Property Value

Type Description
Boolean

true to group fields; otherwise, false.

Remarks

In OLAP mode, use the GroupFieldsInFieldList property to specify whether fields should be shown within display folders or measure groups (as defined in an OLAP cube) in the Field List.

pivotgrid_GroupFieldsInFieldList

In a regular data binding mode, use the GroupFieldsInFieldList property to specify whether user-defined folders should be displayed. To learn more, see User Folders.

If a pivot grid has several bound standalone Customization Controls, the GroupFieldsInFieldList property is in effect for all of them. To specify whether to group hidden fields within a particular Customization Control, use its FieldListControlBase.GroupFields property.

Note

By default, the FieldListControlBase.GroupFields property is bound to the GroupFieldsInFieldList property. To restore this binding after you have set a local value to the FieldListControlBase.GroupFields property, use the ClearValue method.

See Also