Class ChartAxisItemsCollection
A collection to store axis items.
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.RadChart.dll
Syntax
public class ChartAxisItemsCollection : ChartingStateManagedCollection<ChartAxisItem>, IDeserializableCollection, IList<ChartAxisItem>, ICollection<ChartAxisItem>, IEnumerable<ChartAxisItem>, IChartingStateManager, IList, ICollection, IEnumerable
Constructors
ChartAxisItemsCollection()
Creates a new instance of the ChartAxisItemsCollection class.
Declaration
public ChartAxisItemsCollection()
ChartAxisItemsCollection(Color)
Creates a new instance of the AxisItems class with the specified default item color.
Declaration
public ChartAxisItemsCollection(Color itemColor)
Parameters
System.Drawing.Color
itemColor
Axis item text color settings |
ChartAxisItemsCollection(Font)
Creates a new instance of the AxisItems class with the specified default item font.
Declaration
public ChartAxisItemsCollection(Font itemFont)
Parameters
System.Drawing.Font
itemFont
Axis item's Font settings |
ChartAxisItemsCollection(Font, Color)
Creates a new instance of the AxisItems class with the specified default item font and color.
Declaration
public ChartAxisItemsCollection(Font itemFont, Color itemColor)
Parameters
System.Drawing.Font
itemFont
Axis item's Font settings |
System.Drawing.Color
itemColor
Axis item text color settings |
ChartAxisItemsCollection(ChartAxis)
Creates a new instance of the ChartAxisItemsCollection class.
Declaration
public ChartAxisItemsCollection(ChartAxis parent)
Parameters
ChartAxis
parent
|
Properties
Item[Int32]
Gets or sets a ChartAxisItem element at the specified position.
Declaration
public override ChartAxisItem this[int index] { get; set; }
Parameters
System.Int32
index
|
Property Value
ChartAxisItem
|
Overrides
Parent
Methods
Add(ChartAxisItem)
Adds a chart axis item to the collection.
Declaration
public override void Add(ChartAxisItem chartAxisItem)
Parameters
ChartAxisItem
chartAxisItem
Axis item to add |