Inserts a new value at the specified index of the ChartCoordArray.

Namespace:  C1.Win.C1Chart
Assembly:  C1.Win.C1Chart.2 (in C1.Win.C1Chart.2.dll)

Syntax

C#
public void Insert(
	int index,
	Object value
)
Visual Basic
Public Sub Insert ( _
	index As Integer, _
	value As Object _
)

Parameters

index
Type: System..::..Int32
Index of new value.
value
Type: System..::..Object
New data value.

Implements

IList..::..Insert(Int32, Object)

Remarks

The value is inserted at the position specified and the length of the ChartCoordArray is increased by 1.

See Also