[]
Represents a collection of series.
public class BarSeriesCollection : IList, ICollection, IList<Series>, ICollection<Series>, IEnumerable<Series>, IList<BarSeries>, ICollection<BarSeries>, IEnumerable<BarSeries>, IEnumerable, IXmlSerializable
Public Class BarSeriesCollection
Implements IList, ICollection, IList(Of Series), ICollection(Of Series), IEnumerable(Of Series), IList(Of BarSeries), ICollection(Of BarSeries), IEnumerable(Of BarSeries), 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(BarSeries) | Adds a series to the collection. |
| AddRange(BarSeries[]) | Adds an array of series to the collection. |
| Clear() | Removes all series from the collection. |
| Contains(BarSeries) | Determines whether the collection contains a specific series. |
| CopyTo(BarSeries[], 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(BarSeries) | Determines the index of the series in the collection. |
| Insert(int, BarSeries) | Inserts a series into the collection at the specified index. |
| InsertRange(int, BarSeries[]) | Inserts an array of series into the collection at the specified index. |
| OnChanged(EventArgs) | Raises the Changed event. |
| ReadXml(XmlReader) | Generates an object from its XML representation. |
| Remove(BarSeries) | 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. |