Class MapsHighlightSettings
Provides configuration options for highlight settings within the maps control, allowing customization of highlight behavior and appearance.
Inheritance
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class MapsHighlightSettings : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Constructors
MapsHighlightSettings()
Declaration
public MapsHighlightSettings()
Properties
Enable
Gets or sets a value indicating whether highlighting is enabled in the maps.
Declaration
[Parameter]
public bool Enable { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | A boolean where |
Remarks
Enable this property to allow interactive highlighting of map elements such as shapes or markers.
Fill
Gets or sets the color used for highlighting elements in the maps.
Declaration
[Parameter]
public string Fill { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A string representing the color for the highlight effect (e.g., "blue", "#00FF00"). |
Remarks
The color specified will be applied to elements when they are highlighted, providing a visual indication of selection.
Opacity
Gets or sets the opacity level for the highlight effect in the maps.
Declaration
[Parameter]
public double Opacity { get; set; }
Property Value
| Type | Description |
|---|---|
| double | A double value between 0 and 1, where 0 is fully transparent, and 1 is fully opaque. |
Remarks
Adjusting the opacity allows you to control the visibility and emphasis of highlighted elements.