New to Telerik UI for BlazorStart a free 30-day trial

Event arguments for marker click interactions that provide access to the clicked marker's data and mouse event details. Enables handling of user interactions with specific map markers for displaying details, editing data, or triggering custom actions.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class MapMarkerClickEventArgs

Inheritance: objectMapMarkerClickEventArgs

Constructors

C#
public MapMarkerClickEventArgs()

Properties

The data object associated with the clicked marker from the bound data source. Contains the original data item properties and values, allowing access to marker-specific information for display or processing.

C#
public object DataItem { get; set; }

The original DOM mouse event details including button information, coordinates, and modifier keys. Provides access to native browser event properties for advanced marker interaction handling scenarios.

C#
public EventArgs EventArgs { get; set; }