Class TextRenderEventArgs
Specifies the event arguments available for the text render events in the chart component.
Inheritance
System.Object
Syncfusion.Blazor.Charts.BaseEventArgs
TextRenderEventArgs
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class TextRenderEventArgs : BaseEventArgs
Properties
Border
Defines the information of the border.
Declaration
public BorderModel Border { get; set; }
Property Value
Type | Description |
---|---|
BorderModel | A BorderModel object that defines the information of the border. |
Color
Defines the text color.
Declaration
public string Color { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts string value. |
Font
Defines the information of the font.
Declaration
public ChartDefaultFont Font { get; set; }
Property Value
Type | Description |
---|---|
ChartDefaultFont | A ChartDefaultFont object that defines the information of the font. |
Location
Defines the text location.
Declaration
public LabelLocation Location { get; }
Property Value
Type | Description |
---|---|
LabelLocation | A label location value that defines the text location. |
Point
Defines the text point.
Declaration
public Point Point { get; }
Property Value
Type | Description |
---|---|
Point | A point object that represents the text point. |
Series
Defines the current series.
Declaration
public ChartSeries Series { get; }
Property Value
Type | Description |
---|---|
ChartSeries | A ChartSeries object that represents the current series. |
SeriesIndex
Defines the current series index.
Declaration
public int SeriesIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
Template
Defines the template.
Declaration
public RenderFragment<ChartDataPointInfo> Template { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment<ChartDataPointInfo> |
Text
Defines the text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |