Class ShapeSelectedEventArgs
Specifies the event arguments for shape selected event in maps.
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class ShapeSelectedEventArgs : MapsBaseEventArgs
Constructors
ShapeSelectedEventArgs()
Declaration
public ShapeSelectedEventArgs()
Properties
Border
Defines the color and width of the border for the selected element in maps.
Declaration
public MapsBorderSettings Border { get; set; }
Property Value
Type | Description |
---|---|
MapsBorderSettings |
Data
Defines the data source for the currently clicked shape.
Declaration
public Dictionary<string, string> Data { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.String> |
Fill
Defines the color for the selected shape in maps.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Opacity
Defines the opacity for the selected shape in maps.
Declaration
public double Opacity { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
ShapeData
Defines the shapeData for the currently clicked shape.
Declaration
public Dictionary<string, string> ShapeData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.String> |
ShapeDataCollection
Returns the shape details which are in selected state during multi-selection
Declaration
public List<Dictionary<string, string>> ShapeDataCollection { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Collections.Generic.Dictionary<System.String, System.String>> |
Target
Defines the id string of current mouse event target.
Declaration
public string Target { get; set; }
Property Value
Type | Description |
---|---|
System.String |