Skip to main content

PivotGridCustomTotal.SummaryType Property

Gets or sets the type of the summary function used to calculate the current custom total.

Namespace: DevExpress.Xpf.PivotGrid

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

#Declaration

public FieldSummaryType SummaryType { get; set; }

#Property Value

Type Description
FieldSummaryType

A FieldSummaryType enumeration value that specifies the summary function type.

#Remarks

The DXPivotGrid control calculates custom totals against data fields. The type of a custom total's summary function is determined by the SummaryType property.

For data fields which don't contain numeric data only the following summary functions can be calculated: FieldSummaryType.Count, FieldSummaryType.Min and FieldSummaryType.Max. If the field's SummaryType property is set to any other value the corresponding data cells will display zeros.

For numeric data fields any summary function type listed by the FieldSummaryType enumerator can be calculated.

NOTE

The FieldSummaryType.Custom summary type is not supported in OLAP mode.

See Also