Class TooltipRenderEventArgs
Specifies the event arguments for tooltip render event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class TooltipRenderEventArgs : MapsBaseEventArgs
Constructors
TooltipRenderEventArgs()
Declaration
public TooltipRenderEventArgs()
Properties
Content
Gets or sets the content of the tooltip.
Declaration
public string Content { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the tooltip's content. |
Remarks
Customize the tooltip content to display pertinent information dynamically during map usage.
Data
Gets or sets the data associated with the tooltip context.
Declaration
public Dictionary<string, string> Data { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.String> | A System.Collections.Generic.Dictionary<, > containing contextual data for the tooltip. |
Remarks
Leverage data to influence the details and presentation of tooltips on the map.
Fill
Gets or sets the color for the tooltip in the event argument.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the tooltip's background color. |
Remarks
Use fill color for cosmetic adjustments and stylistic coherence with map themes.