Skip to main content
A newer version of this page is available. .

SeriesPointCollection Members

Represents a collection that stores the data points of an individual series.

Properties

Name Description
Capacity Gets or sets the number of elements that the CollectionBase can contain. Inherited from CollectionBase.
Count Gets the number of points stored in the collection.
InnerList protected Gets an ArrayList containing the list of elements in the CollectionBase instance. Inherited from CollectionBase.
Item[Int32] Provides indexed access to individual items in the collection.
List protected Gets an IList containing the list of elements in the CollectionBase instance. Inherited from CollectionBase.
Owner Gets the series that owns the current point collection.
ICollection.IsSynchronized Gets a value indicating whether access to the CollectionBase is synchronized (thread safe). Inherited from CollectionBase.
ICollection.SyncRoot Gets an object that can be used to synchronize access to the CollectionBase. Inherited from CollectionBase.
IList.IsFixedSize Gets a value indicating whether the CollectionBase has a fixed size. Inherited from CollectionBase.
IList.IsReadOnly Gets a value indicating whether the CollectionBase is read-only. Inherited from CollectionBase.

Methods

Name Description
Add(SeriesPoint) Appends the specified SeriesPoint object to the current collection.
AddBubblePoint(DateTime, Double, Double) Adds a point with the specified argument and values required to plot a series with a bubble series view.
AddBubblePoint(Double, Double, Double) Adds a point with the specified argument and values required to plot a series with a bubble series view.
AddBubblePoint(String, Double, Double) Adds a point with the specified argument and values required to plot a series with a bubble series view.
AddFinancialPoint(DateTime, Double, Double, Double, Double) Adds a point with the specified argument and values required to plot a series with a financial series view.
AddFinancialPoint(Double, Double, Double, Double, Double) Adds a point with the specified argument and values required to plot a series with a financial series view.
AddFinancialPoint(String, Double, Double, Double, Double) Adds a point with the specified argument and values required to plot a series with a financial series view.
AddGanttPoint(DateTime, DateTime, DateTime) Adds a point with the specified argument and values required to plot a series with a Gantt series view.
AddGanttPoint(Double, DateTime, DateTime) Adds a point with the specified argument and values required to plot a series with a Gantt series view.
AddGanttPoint(String, DateTime, DateTime) Adds a point with the specified argument and values required to plot a series with a Gantt series view.
AddPoint(DateTime, Double) Adds a point with the specified argument and value required to plot a series.
AddPoint(Double, Double) Adds a point with the specified argument and value required to plot a series.
AddPoint(String, Double) Adds a point with the specified argument and value required to plot a series.
AddRange(SeriesPoint[]) Appends an array of series points to the collection.
AddRangePoint(DateTime, Double, Double) Adds a point with the specified argument and values required to plot a series with a range series view.
AddRangePoint(Double, Double, Double) Adds a point with the specified argument and values required to plot a series with a range series view.
AddRangePoint(String, Double, Double) Adds a point with the specified argument and values required to plot a series with a range series view.
Assign(ChartCollectionBase) Copies all the elements from the SeriesPointCollection object passed as the parameter.
BeginUpdate() Prevents the collection from being updated until the ChartCollectionBase.EndUpdate method is called. Inherited from ChartCollectionBase.
CancelUpdate() Unlocks the collection after a call to the ChartCollectionBase.BeginUpdate method and causes an immediate update without raising any notification events. Inherited from ChartCollectionBase.
Clear() Removes all objects from the CollectionBase instance. This method cannot be overridden. Inherited from CollectionBase.
Contains(ChartElement) Determines whether the collection contains the specified series point.
Dispose() Disposes of the ChartCollectionBase object. Inherited from ChartCollectionBase.
EndUpdate() Unlocks the collection after a call to the ChartCollectionBase.BeginUpdate method and causes an immediate update. Inherited from ChartCollectionBase.
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.
GetElementByIndex(Int32) Gets a chart element within the collection by its index. Inherited from ChartCollectionBase.
GetEnumerator() Returns an enumerator that iterates through the SeriesPointCollection instance.
GetHashCode() Serves as the default hash function. Inherited from Object.
GetType() Gets the Type of the current instance. Inherited from Object.
IndexOf(ChartElement) Returns the specified object’s position within the collection.
Insert(Int32, SeriesPoint) Adds the specified series point to the collection at the specified position.
MemberwiseClone() protected Creates a shallow copy of the current Object. Inherited from Object.
Move(Int32, Int32) Moves a specific item to another position within the collection.
OnSetComplete(Int32, Object, Object) protected Performs additional custom processes after setting a value in the CollectionBase instance. Inherited from CollectionBase.
OnValidate(Object) protected Performs additional custom processes when validating a value. Inherited from CollectionBase.
ReferenceEquals(Object, Object) static Determines whether the specified Object instances are the same instance. Inherited from Object.
Remove(ChartElement) Removes the specified ChartElement object from the collection. Inherited from ChartCollectionBase.
Remove(SeriesPoint) Removes the specified SeriesPoint object from the collection.
RemoveAt(Int32) Removes the element at the specified index of the SeriesPointCollection instance.
RemoveRange(Int32, Int32) Removes the specified range of series points from the collection.
Swap(SeriesPoint, SeriesPoint) Swaps the two specified series within the series collection.
Swap(Int32, Int32) Swaps the two items with the specified indexes in the collection. Inherited from ChartCollectionBase.
IList.Add(Object) Adds an object to the end of the CollectionBase. Inherited from CollectionBase.
ToArray() Copies the elements of the SeriesPointCollection to a new array of SeriesPoint objects.
ToString() Returns a string that represents the current object. Inherited from Object.
Validate() Validates the collection of series points.
See Also