Adds a new value to the end of the ChartArrayArray.

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

Syntax

C#
public int Add(
	Object value
)
Visual Basic
Public Function Add ( _
	value As Object _
) As Integer

Parameters

value
Type: System..::..Object
New data value.

Return Value

An integer indicating the index of the new value in the ChartDataArray. The new index is always the Length of the ChartDataArray prior to adding the new value.

Implements

IList..::..Add(Object)

Remarks

The Add method extends the length of the ChartDataArray by one, then adds the new value to the newly created element. The value is automatically converted to the internal storage data type.

See Also