Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

PivotField Interface

Represents a field in a PivotTable report.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v20.2.Core.dll

Declaration

public interface PivotField

Remarks

The PivotField object is a member of the PivotFieldCollection collection returned by the PivotTable.Fields property. An individual field can be accessed by its name or index in the collection using the PivotFieldCollection.Item property.

To add a PivotField to a pivot table, add it to one of the following collections representing a specific area of the PivotTable report.

In addition to the fields from the source data, a pivot table can also contain calculated fields, whose values are produced based on custom formulas. To add a calculated field to the PivotTable report, use the PivotCalculatedFieldCollection.Add method of the PivotTable.CalculatedFields collection.

Each non-calculated field is made up of items - unique data entries contained in the field. All field items are stored in the PivotItemCollection collection accessible using the PivotField.Items property. You can sort items within a field (PivotField.SortType, PivotField.SortItems), filter them (PivotField.ShowSingleItem, PivotItem.Visible, PivotTable.Filters), or group them to create new subsets of data (PivotField.GroupItems).

A pivot field may also contain one or more calculated items. To add a calculated item to the PivotTable field, use the PivotCalculatedItemCollection.Add method of the PivotField.CalculatedItems collection.

Other members of the PivotField object allow you to modify the field settings. In particular, you can rename a PivotTable field (PivotField.Name), adjust the field layout (PivotField.Layout), specify one or more functions to calculate subtotals for a field (PivotField.SetSubtotal), or restrict an end-user’s ability to move or remove a PivotTable field (PivotField.Behavior).

See Also