New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Constructors

Initializes a new instance of the ChartAxisCollection class.

C#
public ChartAxisCollection(ChartArea owner)
Parameters:ownerChartArea

The owner.

Properties

Gets the owner.

C#
public ChartArea Owner { get; }
Property Value:

The owner.

Methods

Adds the range.

C#
public void AddRange(params Axis[] items)
Parameters:itemsAxis[]

Removes all elements from the Collection<T>.

C#
protected override void ClearItems()

Overrides: Collection<Axis>.ClearItems()

Gets the axis collection.

C#
public T[] Get<T>() where T : Axis
Returns:

T[]

Gets the axis at the specified index.

C#
public T Get<T>(int index) where T : Axis
Parameters:indexint

The index.

Returns:

T

Gets the render enumerator.

C#
public IEnumerator<Axis> GetRenderEnumerator()
Returns:

IEnumerator<Axis>

Inserts the item.

C#
protected override void InsertItem(int index, Axis item)
Parameters:indexint

The index.

itemAxis

The item.

Overrides: Collection<Axis>.InsertItem(int, Axis)

Determines whether the specified index is attached.

C#
public bool IsAttached(int index)
Parameters:indexint

The index.

Returns:

bool

Remove all unused axes from the collection

C#
public void Purge()

Removes the element at the specified index of the Collection<T>.

C#
protected override void RemoveItem(int index)
Parameters:indexint

The zero-based index of the element to remove.

Exceptions:

ArgumentOutOfRangeException

index is less than zero.-or-index is equal to or greater than Count.

Overrides: Collection<Axis>.RemoveItem(int)