Class TooltipRenderEventArgs
Specifies the event arguments available for the tooltip render events in the chart component.
Inheritance
System.Object
Syncfusion.Blazor.Charts.BaseEventArgs
TooltipRenderEventArgs
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class TooltipRenderEventArgs : BaseEventArgs
Properties
Data
Defines the point informations.
Declaration
public PointInfo Data { get; }
Property Value
Type | Description |
---|---|
PointInfo | The PointInfo object representing the point information. |
HeaderText
Defines the header text for the tooltip.
Declaration
public string HeaderText { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Point
Defines current tooltip point.
Declaration
public object Point { get; }
Property Value
Type | Description |
---|---|
System.Object | An object representing the current tooltip point. |
Series
Defines current tooltip series.
Declaration
public object Series { get; }
Property Value
Type | Description |
---|---|
System.Object | An object representing the current tooltip series. |
Text
Defines tooltip text collections.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
TextStyle
Defines tooltip text style.
Declaration
public ChartDefaultFont TextStyle { get; set; }
Property Value
Type | Description |
---|---|
ChartDefaultFont | The ChartDefaultFont object representing the tooltip text style. |