Class StockChartAnnotation
Specifies annotation for stockchart.
Inherited Members
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class StockChartAnnotation : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Constructors
StockChartAnnotation()
Declaration
public StockChartAnnotation()
Properties
ContentTemplate
Gets and sets the template of the annotation.
Declaration
[Parameter]
public RenderFragment ContentTemplate { get; set; }
Property Value
| Type |
|---|
| 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
[Parameter]
public Units CoordinateUnits { get; set; }
Property Value
| Type |
|---|
| Units |
Description
Information about annotation for assistive technology.
Declaration
[Parameter]
public string Description { get; set; }
Property Value
| Type |
|---|
| 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
[Parameter]
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
[Parameter]
public object X { get; set; }
Property Value
| Type |
|---|
| object |
XAxisName
The name of horizontal axis associated with the annotation.
It requires Axes of chart.
Declaration
[Parameter]
public string XAxisName { get; set; }
Property Value
| Type |
|---|
| string |
Y
if set coordinateUnit as Pixel Y specifies the axis value
else is specifies pixel or percentage of coordinate.
Declaration
[Parameter]
public string Y { get; set; }
Property Value
| Type |
|---|
| string |
YAxisName
The name of vertical axis associated with the annotation.
It requires Axes of chart.
Declaration
[Parameter]
public string YAxisName { get; set; }
Property Value
| Type |
|---|
| string |