Class SharedTooltipRenderEventArgs
Specifies the event arguments available for the shared tooltip render events in the chart component.
Inheritance
System.Object
Syncfusion.Blazor.Charts.BaseEventArgs
SharedTooltipRenderEventArgs
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class SharedTooltipRenderEventArgs : BaseEventArgs
Properties
Data
Defines the information of the point.
Declaration
public List<PointInfo> Data { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<PointInfo> | A list of PointInfo representing the information of the points. |
HeaderText
Defines the text of the header.
Declaration
public string HeaderText { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Text
Defines the text.
Declaration
public List<string> Text { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | Accepts a list of string value. |
TextStyle
Defines the text style.
Declaration
public ChartDefaultFont TextStyle { get; }
Property Value
Type | Description |
---|---|
ChartDefaultFont | The ChartDefaultFont object representing the text style. |