PivotGridField.SummaryType Property
Gets or sets the type of the summary function which is calculated against the current data field. This is a dependency property.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v14.2.dll
#Declaration
[XtraSerializablePropertyId(2)]
[XtraSerializableProperty]
public FieldSummaryType SummaryType { get; set; }
#Property Value
Type | Description |
---|---|
Field |
A Field |
#Remarks
The DXPivotGrid control calculates summaries against data fields. The summary function type is determined by the field's SummaryType property.
For 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.
You can implement a custom summary function by handling the PivotGridControl.CustomSummary event.