ClassChartMarkedZonesCollection
Marked zones collection
Definition
Namespace:Telerik.Charting
Assembly:Telerik.WinControls.RadChart.dll
Syntax:
public class ChartMarkedZonesCollection : ChartingStateManagedCollection<ChartMarkedZone>, IChartingStateManager, IList, ICollection, IEnumerable
Inheritance: objectChartingStateManagedCollection<ChartMarkedZone>ChartMarkedZonesCollection
Implements:
Inherited Members
Constructors
ChartMarkedZonesCollection()
Create instance of class
Declaration
public ChartMarkedZonesCollection()
ChartMarkedZonesCollection(ChartPlotArea)
Create instance of class
Declaration
public ChartMarkedZonesCollection(ChartPlotArea parent)
Parameters
parent
ChartPlotArea object as parent
Properties
Parent
Parent element
Declaration
[Browsable(false)]
public ChartPlotArea Parent { get; set; }
Property Value
this[int]
Gets or sets a GridMarker at the specific position in GridMarkers collection.
Declaration
[Browsable(false)]
public override ChartMarkedZone this[int index] { get; set; }
Parameters
index
Position in the collection
Property Value
GridMarker at the specific position
Overrides
Methods
Add(ChartMarkedZone)
Add MarkerZone in the collection
Declaration
public override void Add(ChartMarkedZone item)
Parameters
item
GridMarker for adding
Overrides
Insert(int, ChartMarkedZone)
Insert GridMarker in collection at the specific position
Declaration
public override void Insert(int index, ChartMarkedZone item)
Parameters
index
Position
item
GridMarker
Overrides
Remove(ChartMarkedZone)
Remove GridMarker from collection
Declaration
public override bool Remove(ChartMarkedZone item)
Parameters
item
GridMarker
Returns
Overrides
RemoveAt(int)
Remove GridMarker in the specific position from collection
Declaration
public override void RemoveAt(int index)
Parameters
index
Position
Overrides