Class Chart3DTooltipRenderEventArgs
Specifies the event arguments available for the tooltip render events in the SfChart3D component.
Namespace: Syncfusion.Blazor.Chart3D
Assembly: Syncfusion.Blazor.dll
Syntax
public class Chart3DTooltipRenderEventArgs : Chart3DEventArgs
Properties
Data
Gets the point information's of the tooltip for the SfChart3D.
Declaration
public Chart3DDataPointInfo Data { get; }
Property Value
Type | Description |
---|---|
Chart3DDataPointInfo | The Chart3DDataPointInfo object representing the point information. |
Remarks
This is a read-only property.
HeaderText
Gets or sets the header text for the tooltip of the SfChart3D.
Declaration
public string HeaderText { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. The default value is null. |
Point
Gets the tooltip point for the SfChart3D.
Declaration
public Chart3DPoint Point { get; }
Property Value
Type | Description |
---|---|
Syncfusion.Blazor.Chart3D.Internal.Chart3DPoint | A Syncfusion.Blazor.Chart3D.Internal.Chart3DPoint representing the tooltip point. |
Remarks
This is a read-only property.
Series
Gets the tooltip series for the SfChart3D.
Declaration
public Chart3DSeries Series { get; }
Property Value
Type | Description |
---|---|
Chart3DSeries | A Chart3DSeries representing the tooltip series. |
Remarks
This is a read-only property.
Text
Gets or sets the text for the tooltip of the SfChart3D.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
TextStyle
Gets or sets the text style for the tooltip of the SfChart3D.
Declaration
public Chart3DEventFont TextStyle { get; set; }
Property Value
Type | Description |
---|---|
Chart3DEventFont | The Chart3DEventFont object representing the tooltip text style. The default value is null. |