Skip to main content

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

PivotGridControl.FieldListAllowedLayouts Property

Gets or sets which layouts can be applied to the Field List when it is painted in Excel2007 style. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public FieldListAllowedLayouts FieldListAllowedLayouts { get; set; }

#Property Value

Type Description
FieldListAllowedLayouts

One or several FieldListAllowedLayouts enumeration members that specify which layouts can be applied to the Field List.

Available values:

Name Description
All

All layouts can be applied to the Field List.

StackedDefault

The ‘Fields Section and Areas Section Stacked’ layout can be applied to the Field List.

pivotgrid_FieldListLayout_StackedDefault

StackedSideBySide

The ‘Fields Section and Areas Section Side-By-Side’ layout can be applied to the Field List.

pivotgrid_FieldListLayout_StackedSideBySide

TopPanelOnly

The ‘Fields Section Only’ layout can be applied to the Field List.

pivotgrid_FieldListLayout_TopPanelOnly

BottomPanelOnly2by2

The ‘Areas Section Only (2 by 2)’ layout can be applied to the Field List.

pivotgrid_FieldListLayout_AreasOnly2By2

BottomPanelOnly1by4

The ‘Areas Section Only (1 by 4)’ layout can be applied to the Field List.

pivotgrid_FieldListLayout_AreasOnly1By4

#Remarks

Use the PivotGridControl.FieldListLayout property to specify the layout actually applied to the Field List.

To specify the Field List style, use the PivotGridControl.FieldListStyle property.

See Also