PieSplitCustomPointCollection

PieSplitCustomPointCollection class

表示用于在条形饼图或饼图中进行自定义分割的切分点集合。

public class PieSplitCustomPointCollection : IPieSplitCustomPointCollection

Properties

NameDescription
Count { get; }返回或设置图表数据点的数量。只读 Int32。
IsReadOnly { get; }获取一个值,指示 ICollection 是否为只读。只读 Boolean。
IsSynchronized { get; }返回一个值,指示对集合的访问是否是同步的(线程安全)。只读 Boolean。
Item { get; }返回指定索引的图表数据点。
SyncRoot { get; }返回一个同步根。只读 Object。

Methods

NameDescription
Add(IChartDataPoint)将数据点添加到集合。
Add(int)根据其在父系列数据点集合中的索引添加数据点。
Clear()从 ICollection 中移除所有项。
Contains(IChartDataPoint)确定 ICollection 是否包含特定值。
CopyTo(IChartDataPoint[], int)将 ICollection 的元素复制到数组,从特定数组索引开始。
GetEnumerator()返回一个枚举数,通过集合进行迭代。
Remove(IChartDataPoint)从集合中移除项。
Remove(int)根据其在父系列数据点集合中的索引从集合中移除项。

See Also