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 |
Color
Defines the text color.
Declaration
public string Color { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Font
Defines the information of the font.
Declaration
public ChartDefaultFont Font { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.Blazor.Charts.Internal.ChartDefaultFont |
Location
Defines the text location.
Declaration
public LabelLocation Location { get; }
Property Value
Type | Description |
---|---|
Syncfusion.Blazor.Charts.Chart.Internal.LabelLocation |
Point
Defines the text point.
Declaration
public Point Point { get; }
Property Value
Type | Description |
---|---|
Syncfusion.Blazor.Charts.Chart.Internal.Point |
Series
Defines the current series.
Declaration
public ChartSeries Series { get; }
Property Value
Type | Description |
---|---|
ChartSeries |
SeriesIndex
Defines the current series index.
Declaration
public int SeriesIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Template
Defines the template.
Declaration
public RenderFragment<ChartDataPointInfo> Template { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.RenderFragment<ChartDataPointInfo> |
Text
Defines the text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |