Class EllipseAnnotation
This class is used to add an ellipse annotation in SfChart. An instance of this class need to be added to ChartAnnotations collection.
Inherited Members
Namespace: Syncfusion.SfChart.XForms
Assembly: Syncfusion.SfChart.XForms.dll
Syntax
public class EllipseAnnotation : ShapeAnnotation, IThemeElement
Remarks
EllipseAnnotation is used to draw a circle or an ellipse over the chart area.
Examples
SfChart chart = new SfChart();
EllipseAnnotation ellipseAnnotation = new EllipseAnnotation();
chart.ChartAnnotations.Add(ellipseAnnotation);
Constructors
EllipseAnnotation()
Declaration
public EllipseAnnotation()
Fields
HeightProperty
Gets or sets the height of the ellipse annotation. This is a bindable property.
Declaration
public static readonly BindableProperty HeightProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
WidthProperty
Gets or sets the width of the ellipse annotation. This is a bindable property.
Declaration
public static readonly BindableProperty WidthProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Properties
Height
Gets or sets the height of the ellipse annotation. This is a bindable property.
Declaration
public float Height { get; set; }
Property Value
Type | Description |
---|---|
System.Single | This property takes the float value. |
Width
Gets or sets the width of the ellipse annotation. This is a bindable property.
Declaration
public float Width { get; set; }
Property Value
Type | Description |
---|---|
System.Single | This property takes the float value. |