Hello,
I'm using the maps and plotting a few simple markers.
I would like to trigger an event in two cases:
(a) when the user hovers over a marker
(b) when the user hovers away from the marker
I found the event "TooltipRendering", which works well in the case of (a).
But I cannot find a suitable event for (b).
I tried using "OnMarkerMouseMove", however this event doesn't seem to have any way to differentiate between (a) or (b), it just triggers at any mouse movement while hovering over the marker.
Ideally what I need is an event like "ToolTipClosed"
Does anyone have any ideas?
Thank you,
Sorin
Hi Swetha,
Thank you for you quick response!
I really appreciate Syncfusion's willingness to add support for this even trigger, it would be really helpful.
I look forward to the patch release in July.
Thanks,
Sorin
|
<SfMaps>
<MapsEvents OnMarkerMouseLeave="MouseLeave"></MapsEvents>
……..
</SfMaps>
@code{
public void MouseLeave()
{
Console.WriteLine("Marker mouse leave event is triggered.");
}
} |