Overload List
Removes the index th point. X values remain unchanged.
public abstract Void Delete(System.Int32)
Removes count number of points starting at index. When RemoveGap parameter is true, it calls ValueList FillSequence.
public abstract Void Delete(System.Int32, System.Int32, System.Boolean)
public abstract Void Delete(System.Int32, System.Int32)
Remarks
The Delete method will remove the # ValueIndex point from the Series values lists. The Chart will be automatically redrawn. Dependent Series will be recalculated.
Example
We want to delete the 8th point of a Line Series:
tChart1[0].Delete(7)
(remember, points index start at zero)
This will remove completely the 8th point in the 1st Series. The Chart will be repainted and all dependent Series (whose DataSource is Series(1)) will be recalculated and redrawn.
See Also
Series Class | Series Members | Steema.TeeChart.Styles Namespace