Class TreeMapTooltipArgs
Specifies the event arguments available for the tooltip events in the TreeMap component.
Inherited Members
Namespace: Syncfusion.Blazor.TreeMap
Assembly: Syncfusion.Blazor.dll
Syntax
public class TreeMapTooltipArgs : BaseEventArgs
Constructors
TreeMapTooltipArgs()
Declaration
public TreeMapTooltipArgs()
Properties
Data
Gets or sets the data for rendering the tooltip.
Declaration
public IDictionary<string, object> Data { get; set; }
Property Value
| Type | Description |
|---|---|
| IDictionary<string, object> | A dictionary containing the data to be used in the tooltip. |
Location
Gets or sets the location of the tooltip rendering.
Declaration
public PointF Location { get; set; }
Property Value
| Type | Description |
|---|---|
| PointF | A PointF object that represents the location of the tooltip rendering. |
Text
Gets or sets the text rendered in the tooltip.
Declaration
public string Text { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A string representing the tooltip text. |
TextStyle
Gets or sets the text style for customizing the tooltip text.
Declaration
public TooltipTextStyle TextStyle { get; set; }
Property Value
| Type | Description |
|---|---|
| TooltipTextStyle | A TooltipTextStyle object that represents the text style for customizing the tooltip text. |