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 |
---|---|
Pivot |
A Pivot |
#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.