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 | Accepts the double value. |
CenterY
Gets or sets the center Y position for the current bubble.
Declaration
public double CenterY { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
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 the data associated with the current bubble. |
Fill
Gets or sets the color for the bubble in event argument.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Radius
Gets or sets the radius for the current bubble.
Declaration
public double Radius { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |