Class Chart3DTextRenderEventArgs
Specifies the event arguments available for the text render events in the SfChart3D component.
Namespace: Syncfusion.Blazor.Chart3D
Assembly: Syncfusion.Blazor.dll
Syntax
public class Chart3DTextRenderEventArgs : Chart3DEventArgs
Properties
Border
Gets or sets the border color and width of the SfChart3D datalabel.
Declaration
public Chart3DEventBorder Border { get; set; }
Property Value
Type | Description |
---|---|
Chart3DEventBorder | A Chart3DEventBorder object that defines the information of the border. |
Color
Gets or sets the color of the SfChart3D datalabel.
Declaration
public string Color { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts string value. The default value is null. |
Font
Gets or sets the font style of the SfChart3D datalabel.
Declaration
public Chart3DEventFont Font { get; set; }
Property Value
Type | Description |
---|---|
Chart3DEventFont | A Chart3DEventFont object that defines the information of the font. |
Location
Gets the location of the SfChart3D datalabel.
Declaration
public SymbolLocation Location { get; }
Property Value
Type | Description |
---|---|
Syncfusion.Blazor.Chart3D.Internal.SymbolLocation | A label location value that defines the text location. |
Remarks
This is read-only property.
Point
Gets the point of the SfChart3D datalabel.
Declaration
public Chart3DPoint Point { get; }
Property Value
Type | Description |
---|---|
Syncfusion.Blazor.Chart3D.Internal.Chart3DPoint | A Syncfusion.Blazor.Chart3D.Internal.Chart3DPoint object that represents the point. |
Remarks
This is a readonly property.
Series
Gets the series of the SfChart3D datalabel.
Declaration
public Chart3DSeries Series { get; }
Property Value
Type | Description |
---|---|
Chart3DSeries | A Chart3DSeries object that represents the series. |
Remarks
This is a read-only property.
SeriesIndex
Gets the series index of the datalabel.
Declaration
public int SeriesIndex { get; }
Property Value
Type |
---|
System.Int32 |
Remarks
This is read-only property.
Template
Defines the template.
Declaration
public RenderFragment<Chart3DDataPointInfo> Template { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.RenderFragment<Chart3DDataPointInfo> |
Text
Gets or sets the text of the SfChart3D datalabel.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. The default value is null. |