Class SharedTooltipRenderEventArgs
Specifies the event arguments available for the shared tooltip render events in the chart component.
Inheritance
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class SharedTooltipRenderEventArgs : BaseEventArgs
Properties
Data
Gets the information of the data points associated with the shared tooltip.
Declaration
public List<PointInfo> Data { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<PointInfo> | A list of PointInfo representing detailed information about the data points relevant to the shared tooltip. |
Remarks
This read-only property provides comprehensive information about the data points that are currently highlighted by the shared tooltip.
HeaderText
Gets or sets the text of the header for the shared tooltip.
Declaration
public string HeaderText { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts a string value representing the header text of the shared tooltip. |
Remarks
The header text provides context or a title for the shared tooltip.
Text
Gets or sets the text for the shared tooltip.
Declaration
public List<string> Text { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | Accepts a list of string values representing the text content of the shared tooltip. |
Remarks
Use this property to define or access the text content displayed in the shared tooltip.
TextStyle
Gets the text style for the shared tooltip.
Declaration
public ChartDefaultFont TextStyle { get; }
Property Value
Type | Description |
---|---|
ChartDefaultFont | A ChartDefaultFont object representing the text style for the shared tooltip. |
Remarks
This is a read-only property specifying the font style used in the shared tooltip.