ActiveReports.Chart Request technical support
Insert Method
See Also 


index
The index at which to insert the DataPoint.
value
The DataPoint to insert.
Inserts the specified DataPoint into the collection at the specified index.

Syntax

Visual Basic (Declaration) 
Public Sub Insert( _
   ByVal index As Integer, _
   ByVal value As DataPoint _
) 
Visual Basic (Usage)Copy Code
Dim instance As DataPointsCollection
Dim index As Integer
Dim value As DataPoint
 
instance.Insert(index, value)
C# 
public void Insert( 
   int index,
   DataPoint value
)

Parameters

index
The index at which to insert the DataPoint.
value
The DataPoint to insert.

See Also