Skip to main content
Tag

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

PivotGridField.SummaryFilterMode Property

Gets or sets whether summary filtering should be applied to the last aggregation level or to the specified one. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public SummaryFilterMode SummaryFilterMode { get; set; }

#Property Value

Type Description
SummaryFilterMode

A DevExpress.Xpf.PivotGrid.SummaryFilterMode enumeration value.

Available values:

Name Description
LastLevel

Apply summary filtering to cells on the last level (a level identified by the last column and row fields).

SpecificLevel

Apply summary filtering to cells on the level identified by the PivotGridField.SummaryFilterColumnField and PivotGridField.SummaryFilterRowField property values.

#Remarks

Summary filters can only be applied to cells on the same aggregation level. Set the SummaryFilterMode to SpecificLevel and use the SummaryFilterColumnField and SummaryFilterRowField properties to specify the aggregation level for summary filtering.

If you don’t specify the SummaryFilterColumnField and SummaryFilterRowField properties, summary filtering is applied to cells on the last level (a level identified by the last column and row fields).

Refer to the Filter by Summaries topic for more information.

See Also