Class AccumulationChartAnnotation
Annotation is a user defined HTML element that can be placed on chart
We can use annotations to pile up the visual elegance of the chart.
Specifies the customization of annotation.
Inheritance
System.Object
AccumulationChartAnnotation
Assembly: Syncfusion.Blazor.dll
Syntax
public class AccumulationChartAnnotation : SfDataBoundComponent
Constructors
AccumulationChartAnnotation()
Declaration
public AccumulationChartAnnotation()
Properties
ChildContent
Gets and sets the content of the UI element.
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Type |
Microsoft.AspNetCore.Components.RenderFragment |
Content
Content of the annotation, which accepts the id of the custom element.
Declaration
public string Content { get; set; }
Property Value
ContentTemplate
Gets and sets the Template content of this 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
Description
Information about annotation for assistive technology.
Declaration
public string Description { get; set; }
Property Value
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
X
if set coordinateUnit as Pixel
X specifies the axis value
else is specifies pixel or percentage of coordinate.
Declaration
public string X { get; set; }
Property Value
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
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Type |
Name |
Description |
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder |
__builder |
|
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
System.Threading.Tasks.Task |
Overrides
Declaration
protected override Task OnParametersSetAsync()
Returns
Type |
System.Threading.Tasks.Task |
Overrides