ClassAxisScaleBreakCollection
Class
Definition
Namespace:Telerik.Charting
Assembly:Telerik.WinControls.ChartView.dll
Syntax:
cs-api-definition
public class AxisScaleBreakCollection : Collection<AxisScaleBreak>, IList<AxisScaleBreak>, ICollection<AxisScaleBreak>, IList, ICollection, IReadOnlyList<AxisScaleBreak>, IReadOnlyCollection<AxisScaleBreak>, IEnumerable<AxisScaleBreak>, IEnumerable
Inheritance: objectCollection<AxisScaleBreak>AxisScaleBreakCollection
Implements:
Inherited Members
Constructors
AxisScaleBreakCollection(AxisModel)
Initializes a new instance of the AxisScaleBreakCollection class.
Declaration
cs-api-definition
public AxisScaleBreakCollection(AxisModel axis)
Parameters
axis
The axis.
Properties
this[string]
Gets the AxisScaleBreak with the specified name.
Declaration
cs-api-definition
public AxisScaleBreak this[string name] { get; }
Parameters
name
Property Value
Methods
ClearItems()
Removes all elements from the Collection<T>.
Declaration
cs-api-definition
protected override void ClearItems()
Overrides
InsertItem(int, AxisScaleBreak)
Inserts the item.
Declaration
cs-api-definition
protected override void InsertItem(int index, AxisScaleBreak item)
Parameters
index
The index.
item
The item.
Overrides
RemoveItem(int)
Removes the element at the specified index of the Collection<T>.
Declaration
cs-api-definition
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