New to Telerik ReportingStart a free 30-day trial

A collection to store axis items.

Definition

Namespace:Telerik.Reporting.Charting

Assembly:Telerik.Reporting.dll

Syntax:

C#
public class ChartAxisItemsCollection : ChartingStateManagedCollection<ChartAxisItem>, IChartingStateManager

Inheritance: objectChartingStateManagedCollection<ChartAxisItem>ChartAxisItemsCollection

Implements: IChartingStateManager

Inherited Members ChartingStateManagedCollection<ChartAxisItem>.IndexOf(ChartAxisItem)ChartingStateManagedCollection<ChartAxisItem>.Insert(int, ChartAxisItem)ChartingStateManagedCollection<ChartAxisItem>.RemoveAt(int)ChartingStateManagedCollection<ChartAxisItem>.AddRange(ChartAxisItem[])ChartingStateManagedCollection<ChartAxisItem>.Clear()ChartingStateManagedCollection<ChartAxisItem>.Contains(ChartAxisItem)ChartingStateManagedCollection<ChartAxisItem>.CopyTo(ChartAxisItem[], int)ChartingStateManagedCollection<ChartAxisItem>.Remove(ChartAxisItem)ChartingStateManagedCollection<ChartAxisItem>.GetEnumerator()ChartingStateManagedCollection<ChartAxisItem>.LoadViewState(object)ChartingStateManagedCollection<ChartAxisItem>.SaveViewState()ChartingStateManagedCollection<ChartAxisItem>.SetItemDirty(ChartAxisItem)ChartingStateManagedCollection<ChartAxisItem>.OnInsert(int, object)ChartingStateManagedCollection<ChartAxisItem>.OnInsertComplete(int, object)ChartingStateManagedCollection<ChartAxisItem>.OnRemove(int, object)ChartingStateManagedCollection<ChartAxisItem>.OnRemoveComplete(int, object)ChartingStateManagedCollection<ChartAxisItem>.OnClear()ChartingStateManagedCollection<ChartAxisItem>.OnClearComplete()ChartingStateManagedCollection<ChartAxisItem>.ListChartingStateManagedCollection<ChartAxisItem>.CountChartingStateManagedCollection<ChartAxisItem>.IsReadOnly...

Constructors

Creates a new instance of the ChartAxisItemsCollection class.

C#
public ChartAxisItemsCollection()

Creates a new instance of the ChartAxisItemsCollection class.

C#
public ChartAxisItemsCollection(ChartAxis parent)
Parameters:parentChartAxis

Creates a new instance of the AxisItems class with the specified default item color.

C#
public ChartAxisItemsCollection(Color itemColor)
Parameters:itemColorColor

Axis item text color settings

Creates a new instance of the AxisItems class with the specified default item font and color.

C#
public ChartAxisItemsCollection(Font itemFont, Color itemColor)
Parameters:itemFontFont

Axis item's Font settings

itemColorColor

Axis item text color settings

Creates a new instance of the AxisItems class with the specified default item font.

C#
public ChartAxisItemsCollection(Font itemFont)
Parameters:itemFontFont

Axis item's Font settings

Properties

Parent element

C#
[Browsable(false)]
public ChartAxis Parent { get; set; }

Gets or sets a ChartAxisItem element at the specified position.

C#
[Browsable(false)]
public override ChartAxisItem this[int index] { get; set; }
Parameters:indexint

Overrides: ChartingStateManagedCollection<ChartAxisItem>.this[int]

Methods

Adds a chart axis item to the collection.

C#
public override void Add(ChartAxisItem chartAxisItem)
Parameters:chartAxisItemChartAxisItem

Axis item to add

Overrides: ChartingStateManagedCollection<ChartAxisItem>.Add(ChartAxisItem)