MindFusion.Charting Programmer's Guide

SeriesCollection.Remove Method

See Also
 





Removes the first occurrence of the specified DoubleCollection object.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public void Remove (
    DoubleCollection value
)

Visual Basic  Copy Code

Public Sub Remove ( _
    value As DoubleCollection _
)

JavaScript  Copy Code

function Remove (value)

 Parameters

value
The DoubleCollection object to remove.

 Remarks

The collection's count is reduced with 1. The items, which followed the removed item, are moved forwards with one place. Their indexes are also updated.

 See Also