PieSplitCustomPointCollection

PieSplitCustomPointCollection class

Represents a collection of points for splitting point in a bar-of-pie or pie-of-pie chart with a custom split.

public class PieSplitCustomPointCollection : IPieSplitCustomPointCollection

Properties

NameDescription
Count { get; }Returns or sets the count of chart data points. Read-only Int32.
IsReadOnly { get; }Gets a value indicating whether the ICollection is read-only. Read-only Boolean.
IsSynchronized { get; }Returns a value indicating whether access to the collection is synchronized (thread-safe). Read-only Boolean.
Item { get; }Returns chart data point for specified index.
SyncRoot { get; }Returns a synchronization root. Read-only Object.

Methods

NameDescription
Add(IChartDataPoint)Adds data point to collection.
Add(int)Adds data point by its index in parent series points collection.
Clear()Removes all items from the ICollection.
Contains(IChartDataPoint)Determines whether the ICollection contains a specific value.
CopyTo(IChartDataPoint[], int)Copies the elements of the ICollection to an Array, starting at a particular Array index.
GetEnumerator()Returns an enumerator that iterates through the collection.
Remove(IChartDataPoint)Removes item from collection.
Remove(int)Removes item from collection by it index in parent series points collection.

See Also