Class ChartAnnotationClickedEventArgs
Serves as an event data for the AnnotationClicked event. The event data holds information after the annotation is clicked.
Inheritance
System.Object
ChartAnnotationClickedEventArgs
Namespace: Syncfusion.SfChart.XForms
Assembly: Syncfusion.SfChart.XForms.dll
Syntax
public class ChartAnnotationClickedEventArgs : EventArgs
Constructors
ChartAnnotationClickedEventArgs(ChartAnnotation, Single, Single)
Initializes a new instance of the ChartAnnotationClickedEventArgs class.
Declaration
public ChartAnnotationClickedEventArgs(ChartAnnotation annotation, float x, float y)
Parameters
Type | Name | Description |
---|---|---|
ChartAnnotation | annotation | chart annotation. |
System.Single | x | x-point value. |
System.Single | y | y-point value. |
Properties
Annotation
Gets the corresponding annotation.
Declaration
public ChartAnnotation Annotation { get; }
Property Value
Type |
---|
ChartAnnotation |
X
Gets the corresponding X-point.
Declaration
public float X { get; }
Property Value
Type |
---|
System.Single |
Y
Gets the corresponding Y-point.
Declaration
public float Y { get; }
Property Value
Type |
---|
System.Single |