MindFusion.Charting Programmer's Guide

SeriesCollection.Insert Method

See Also
 





Inserts the specified DoubleCollection object in the specified position.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public void Insert (
    int index,
    DoubleCollection value
)

Visual Basic  Copy Code

Public Sub Insert ( _
    index As Integer, _
    value As DoubleCollection _
)

JavaScript  Copy Code

function Insert (index, value)

 Parameters

index

The zero-based index at which value should be inserted.

value

The DoubleCollection object to insert.

 Remarks

The collection's count is increased with 1. The items, which followed the inserted item, are moved backwards with one place. Their indexes are also updated.

 See Also