Class TreeMapTooltipArgs
Specifies the event arguments available for the tooltip events in the TreeMap component.
Inheritance
System.Object
Syncfusion.Blazor.TreeMap.BaseEventArgs
TreeMapTooltipArgs
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 |
---|---|
System.Collections.Generic.IDictionary<System.String, System.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 |
---|---|
System.Drawing.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 |
---|---|
System.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 |
---|---|
Syncfusion.Blazor.TreeMap.Internal.TooltipTextStyle | A TooltipTextStyle object that represents the text style for customizing the tooltip text. |