ClassChartAxisCollection
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.ChartView.dll
Syntax:
public class ChartAxisCollection : Collection<Axis>, IList, ICollection, IEnumerable
Inheritance: objectCollection<Axis>ChartAxisCollection
Implements:
Inherited Members
Constructors
ChartAxisCollection(ChartArea)
Initializes a new instance of the ChartAxisCollection class.
Declaration
public ChartAxisCollection(ChartArea owner)
Parameters
owner
The owner.
Properties
Methods
AddRange(params Axis[])
Adds the range.
ClearItems()
Removes all elements from the Collection<T>.
Declaration
protected override void ClearItems()
Overrides
Get<T>()
Gets the axis collection.
Declaration
public T[] Get<T>() where T : Axis
Returns
T[]
Get<T>(int)
Gets the axis at the specified index.
Declaration
public T Get<T>(int index) where T : Axis
Parameters
index
The index.
Returns
T
GetRenderEnumerator()
Gets the render enumerator.
Declaration
public IEnumerator<Axis> GetRenderEnumerator()
Returns
IEnumerator<Axis>
InsertItem(int, Axis)
Inserts the item.
IsAttached(int)
Determines whether the specified index is attached.
RemoveItem(int)
Removes the element at the specified index of the Collection<T>.
Declaration
protected override void RemoveItem(int index)
Parameters
index
The zero-based index of the element to remove.
Exceptions
index is less than zero.-or-index is equal
to or greater than Count.
Overrides