[]
Represents a collection of series.
public class SeriesCollection : IList, ICollection, IList<Series>, ICollection<Series>, IEnumerable<Series>, IEnumerable, IXmlSerializable
Public Class SeriesCollection
Implements IList, ICollection, IList(Of Series), ICollection(Of Series), IEnumerable(Of Series), IEnumerable, IXmlSerializable
| Name | Description |
|---|---|
| Count | Gets the number of series in the collection. |
| this[int] | Gets or sets the series at the specified index. |
| Name | Description |
|---|---|
| Add(Series) | Adds a series to the collection. |
| AddRange(Series[]) | Adds an array of series to the collection. |
| Clear() | Removes all series from the collection. |
| Clone() | Creates a new object that is a copy of the current instance. |
| Contains(Series) | Determines whether the collection contains a specific series. |
| CopyTo(Series[], int) | Copies the series in the collection to an array, starting at the specified array index. |
| GetEnumerator() | Gets an enumerator that iterates through the collection. |
| GetSchema() | This method is reserved and should not be used. |
| IndexOf(Series) | Determines the index of the series in the collection. |
| Insert(int, Series) | Inserts a series into the collection at the specified index. |
| InsertRange(int, Series[]) | Inserts an array of series into the collection at the specified index. |
| OnChanged(EventArgs) | Raises the Changed event. |
| OnListChanged(ListChangedEventArgs) | Raises the ListChanged event. |
| ReadXml(XmlReader) | Generates an object from its XML representation. |
| Remove(Series) | Removes the specified series from the collection. |
| RemoveAt(int) | Removes the series at the specified index. |
| WriteXml(XmlWriter) | Converts an object into its XML representation. |
| Name | Description |
|---|---|
| Changed | Occurs when the collection is changed. |
| ListChanged | Occurs when this list is changed, such as when an item in the list is added, inserted, deleted, or changed, or when the list is cleared. |