[]
        
(Showing Draft Content)

FarPoint.Web.Chart.SeriesCollection.InsertRange

InsertRange Method

InsertRange(int, Series[])

Inserts an array of series into the collection at the specified index.

Declaration
public void InsertRange(int index, Series[] items)
Public Sub InsertRange(index As Integer, items As Series())
Parameters
Type Name Description
int index

Index of series.

Series[] items

Array of series.

Remarks

The function fires a list changed event with the old index the index at which to start adding. The new index is the index of the last added element.

Exceptions
Type Condition
ArgumentNullException

items is a null reference (Nothing in VB) or some items[i] is a null reference (Nothing in VB).