Class ShapeRenderingEventArgs
Specifies the event arguments in shape rendering event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class ShapeRenderingEventArgs : MapsBaseEventArgs
Constructors
ShapeRenderingEventArgs()
Declaration
public ShapeRenderingEventArgs()
Properties
Data
Gets or sets the data for the shape from the data source.
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 key-value pairs of the shape data. |
Remarks
Access this data to influence rendering decisions based on the underlying data context.
Fill
Gets or sets the color for the current shape being rendered.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the shape's fill color. |
Remarks
Use fill color to manage the visual appearance of the shape during rendering.
Index
Gets or sets the index value of the shape being rendered in the map.
Declaration
public double Index { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the shape's index position. |
Remarks
Helps identify the rendering order or context of shapes within the map.