DataPointCollection Methods
Provides a collection of data points for a series.| Name | Description |
|---|---|
| Add(DataPoint) | Appends the specified item to the current collection. |
| Clear() | Removes all items from the collection. |
| Contains(DataPoint) | Returns whether the collection contains the specified data point. |
| Equals(Object, Object) static | Determines whether the specified object instances are considered equal. Inherited from Object. |
| Equals(Object) | Determines whether the specified object is equal to the current object. Inherited from Object. |
| GetHashCode() | Serves as the default hash function. Inherited from Object. |
| GetObjectByKey(Int32) | Returns a data point corresponding to the specified key. |
| GetType() | Gets the Type of the current instance. Inherited from Object. |
| IndexOf(DataPoint) | Returns the specified point’s position within the collection. |
| Insert(Int32, DataPoint) | Adds the specified data point to the specified position within the collection. |
| MemberwiseClone() protected | Creates a shallow copy of the current Object. Inherited from Object. |
| Move(Int32, Int32) | Moves the data point to another position within the collection. |
| ReferenceEquals(Object, Object) static | Determines whether the specified Object instances are the same instance. Inherited from Object. |
| Remove(DataPoint) | Removes the specified item from the collection. |
| RemoveAt(Int32) | Removes an item at the specified position from the collection. |
| ToString() | Returns a string that represents the current object. Inherited from Object. |
See Also