Class StockChartAnnotation
Specifies annotation for stockchart.
Inheritance
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class StockChartAnnotation : OwningComponentBase
Constructors
StockChartAnnotation()
Declaration
public StockChartAnnotation()
Properties
ContentTemplate
Gets and sets the template of the annotation.
Declaration
public RenderFragment ContentTemplate { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment |
CoordinateUnits
Specifies the coordinate units of the annotation. They are Pixel - Annotation renders based on x and y pixel value. Point - Annotation renders based on x and y axis value.
Declaration
public Units CoordinateUnits { get; set; }
Property Value
Type |
---|
Units |
Description
Information about annotation for assistive technology.
Declaration
public string Description { get; set; }
Property Value
Type |
---|
System.String |
Region
Specifies the regions of the annotation. They are Chart - Annotation renders based on chart coordinates. Series - Annotation renders based on series coordinates.
Declaration
public Regions Region { get; set; }
Property Value
Type |
---|
Regions |
X
if set coordinateUnit as Pixel
X specifies the axis value
else is specifies pixel or percentage of coordinate.
Declaration
public object X { get; set; }
Property Value
Type |
---|
System.Object |
XAxisName
The name of horizontal axis associated with the annotation.
It requires Axes
of chart.
Declaration
public string XAxisName { get; set; }
Property Value
Type |
---|
System.String |
Y
if set coordinateUnit as Pixel
Y specifies the axis value
else is specifies pixel or percentage of coordinate.
Declaration
public string Y { get; set; }
Property Value
Type |
---|
System.String |
YAxisName
The name of vertical axis associated with the annotation.
It requires Axes
of chart.
Declaration
public string YAxisName { get; set; }
Property Value
Type |
---|
System.String |