Class NodeCollection
Represents a collection of a ChartNode instances.
Inheritance
System.Object
NodeCollection
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class NodeCollection : IEnumerable<ChartNode>, IEnumerable
Properties
Count
Gets the count of all the items.
Declaration
public int Count { get; }
Property Value
System.Int32
|
Owner
Gets the ChartElement instance that owns this collection.
Declaration
public ChartElement Owner { get; }
Property Value
ChartElement
|
Methods
GetEnumerator()
Gets the System.Collections.IEnumerator instance that allows for traversing all the items.
Declaration
public IEnumerator<ChartNode> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<ChartNode>
|
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|
Implements
System.Collections.IEnumerable.GetEnumerator()