Class LabelRenderingEventArgs
Specifies the event argument for label rendering event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class LabelRenderingEventArgs : MapsBaseEventArgs
Constructors
LabelRenderingEventArgs()
Declaration
public LabelRenderingEventArgs()
Properties
Fill
Gets or sets the color for the data-label in event argument.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
LayerIndex
Gets or sets the index number of the layer in which the data-label is rendered.
Declaration
public int LayerIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
OffsetX
Gets or sets the right and left position of text for the data-label.
Declaration
public double OffsetX { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
OffsetY
Gets or sets the top and bottom position of text for the data-label.
Declaration
public double OffsetY { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Text
Gets or sets the text for the data-label in event argument.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |