Class StockChartAnnotationSettingsModel
Interface for a class StockChartAnnotationSettings
Inheritance
Implements
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class StockChartAnnotationSettingsModel : Object, IEquatable<StockChartAnnotationSettingsModel>
Constructors
StockChartAnnotationSettingsModel()
Declaration
public StockChartAnnotationSettingsModel()
Properties
Content
Content of the annotation, which accepts the id of the custom element.
Declaration
public string Content { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 | Description |
---|---|
Units |
Description
Information about annotation for assistive technology.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
HorizontalAlignment
Specifies the alignment of the annotation. They are Near - Align the annotation element as left side. Far - Align the annotation element as right side. Center - Align the annotation element as mid point.
Declaration
public Alignment HorizontalAlignment { get; set; }
Property Value
Type | Description |
---|---|
Alignment |
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 | Description |
---|---|
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 | Description |
---|---|
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 | Description |
---|---|
System.String |
Y
if set coordinateUnit as Pixel
Y specifies the axis value
else is specifies pixel or percentage of coordinate
Declaration
public object Y { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
YAxisName
The name of vertical axis associated with the annotation.
It requires axes
of chart.
Declaration
public string YAxisName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(StockChartAnnotationSettingsModel)
Returns a boolean by comparing with stockChartAnnotationSettingsModel
Declaration
public bool Equals(StockChartAnnotationSettingsModel stockChartAnnotationSettingsModel)
Parameters
Type | Name | Description |
---|---|---|
StockChartAnnotationSettingsModel | stockChartAnnotationSettingsModel |
Returns
Type | Description |
---|---|
System.Boolean |