ChartCalculatedFieldCollection.Insert(Int32, ChartCalculatedField) Method
Inserts the specified calculated field into the collection at the specified position.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
Parameters
Name | Type | Description |
---|---|---|
index | Int32 | A zero-based integer the calculated field position is to be inserted. |
calculatedField | ChartCalculatedField | The zero-based index at which the calculated field should be inserted. |
Remarks
The Insert method allows you to insert a calculated field at a specific position. Elements that follow the insertion point are moved down to accommodate the new element.
If the index parameter is equal to or greater than the number of elements in the collection, the new element is appended to the end.
To add a new element(s) to the end of collection, use the Add and AddRange methods.