Skip to main content
Row

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

PivotField.CalculatedItems Property

Provides access to the collection of calculated items added to the PivotTable field.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

PivotCalculatedItemCollection CalculatedItems { get; }

#Property Value

Type Description
PivotCalculatedItemCollection

A PivotCalculatedItemCollection object specifying the PivotField’s collection of calculated items.

#Remarks

Use the CalculatedItems property to get access to the collection that stores all calculated items added to a PivotTable field. An individual calculated item can be accessed by its index in the collection.

To add a calculated item to a pivot field, use the PivotCalculatedItemCollection.Add method.

To remove a calculated item from the PivotTable field, use the PivotCalculatedItemCollection.Remove or PivotCalculatedItemCollection.RemoveAt method. You can also use the PivotCalculatedItemCollection.Clear method to remove all calculated items from the collection at once.

For more information on how to insert and modify calculated items, refer to the How to: Create a Calculated Item example.

See Also