Class CartesianMarkedZoneAnnotation
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class CartesianMarkedZoneAnnotation : CartesianChartAnnotation, IDisposable, INotifyPropertyChanged, ICustomTypeDescriptor, IChartElementPresenter, IStylableElement, IStylableNode, IFillElement, IBorderElement, IBoxStyle, IBoxElement, IShapedElement
Constructors
CartesianMarkedZoneAnnotation()
Initializes a new instance of the CartesianMarkedZoneAnnotation class.
Declaration
public CartesianMarkedZoneAnnotation()
CartesianMarkedZoneAnnotation(Object, Object, Object, Object)
Initializes a new instance of the CartesianMarkedZoneAnnotation class.
Declaration
public CartesianMarkedZoneAnnotation(object horizontalFrom, object horizontalTo, object verticalFrom, object verticalTo)
Parameters
System.Object
horizontalFrom
The value of the horizontal axis where the annotation will start. |
System.Object
horizontalTo
The value of the horizontal axis where the annotation will end. |
System.Object
verticalFrom
The value of the vertical axis where the annotation will start. |
System.Object
verticalTo
The value of the vertical axis where the annotation will end. |
Fields
HorizontalAxisProperty
HorizontalFromProperty
HorizontalToProperty
VerticalAxisProperty
VerticalFromProperty
VerticalToProperty
Properties
HorizontalAxis
Gets or sets the horizontal axis.
Declaration
public CartesianAxis HorizontalAxis { get; set; }
Property Value
CartesianAxis
The horizontal axis. |
HorizontalFrom
Gets or sets the horizontal value that the marked zone will be drawn from. If this value is null the marked zone will reach the plot area's end.
Declaration
public object HorizontalFrom { get; set; }
Property Value
System.Object
|
HorizontalTo
Gets or sets the horizontal value that the marked zone will be drawn to. If this value is null the marked zone will reach the plot area's end.
Declaration
public object HorizontalTo { get; set; }
Property Value
System.Object
|
VerticalAxis
Gets or sets the vertical axis.
Declaration
public CartesianAxis VerticalAxis { get; set; }
Property Value
CartesianAxis
The vertical axis. |
VerticalFrom
Gets or sets the vertical value that the marked zone will be drawn from. If this value is null the marked zone will reach the plot area's end.
Declaration
public object VerticalFrom { get; set; }
Property Value
System.Object
|
VerticalTo
Gets or sets the vertical value that the marked zone will be drawn to. If this value is null the marked zone will reach the plot area's end.
Declaration
public object VerticalTo { get; set; }
Property Value
System.Object
|
Methods
OnAttached(UIChartElement)
Occurs when the annotation has been successfully attached to its owning ChartView instance.
Declaration
protected override void OnAttached(UIChartElement parent)
Parameters
UIChartElement
parent
|