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
Defines the data for rendering the tooltip.
Declaration
public IDictionary<string, object> Data { get; set; }
Property Value
Type |
---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Location
Defines the location of the tooltip rendering event.
Declaration
public PointF Location { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.PointF | A PointF object that represents the location of the tooltip rendering event. |
Text
Defines the text rendered in the tooltip.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
TextStyle
Defines 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. |