Class BubbleRenderingEventArgs
Specifies the event arguments for bubble rendering event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class BubbleRenderingEventArgs : MapsBaseEventArgs
Constructors
BubbleRenderingEventArgs()
Declaration
public BubbleRenderingEventArgs()
Properties
CenterX
Gets or sets the center x position for the current bubble.
Declaration
public double CenterX { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the x-coordinate center of the bubble. |
Remarks
Adjust this for accurate positioning of the bubble on the map.
CenterY
Gets or sets the center y position for the current bubble.
Declaration
public double CenterY { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the y-coordinate center of the bubble. |
Remarks
Adjust this for accurate positioning of the bubble on the map.
Data
Gets or sets the data for the current bubble.
Declaration
public Dictionary<string, string> Data { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.String> | A dictionary containing data associated with the bubble, primarily key-value pairs. |
Remarks
Leverage this data to drive the customization of the bubble's appearance and behavior.
Fill
Gets or sets the color for the bubble.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the fill color of the bubble. |
Remarks
Assign a color to visually distinguish the bubble relative to mapped data.
Radius
Gets or sets the radius for the current bubble.
Declaration
public double Radius { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value representing the radius. |
Remarks
The radius defines the size of the bubble on the map.