TdxChartSeriesPoints.Add(Double) Method
Adds a new series point with the specified value and the point’s index as an argument.
Declaration
procedure Add(const AValue: Double); overload;
Parameters
Name | Type | Description |
---|---|---|
AValue | Double | The series point value. The Count property value before the current point add operation is used as a series point argument. |
Remarks
Call the Add
procedure to append a new series point to the collection. To insert a new point at any position in the collection, call the Insert procedure instead.
To delete any number of series points at any position in the collection, you can call the Delete procedure.
See Also