Hi,
Is there any mouseleave event for chart series like 'SeriesHover'?
Actually our requirement is to show a popup when mouse hover the series. if mouse leave from the
series, we need to hide the popup. I tried it with the available chart and there have an inbuilt serieshover event.
But there is no seriesleave like event.
4 Answers, 1 is accepted
0
Hi Jineesh,
I am afraid currently such event is not available, however we will consider its implementation for future versions of the product. Please excuse us for the inconvenience caused.
On a side note, if you wish you may create an entry for a future request at our UserVoice forum. This way the other users can evaluate it. When planning for a release we take into account all the feedback from the UserVoice. The more votes the suggestion collects, the higher priority will have.
Kind regards,
Iliana Nikolova
the Telerik team
I am afraid currently such event is not available, however we will consider its implementation for future versions of the product. Please excuse us for the inconvenience caused.
On a side note, if you wish you may create an entry for a future request at our UserVoice forum. This way the other users can evaluate it. When planning for a release we take into account all the feedback from the UserVoice. The more votes the suggestion collects, the higher priority will have.
Kind regards,
Iliana Nikolova
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Brian Swiger
Top achievements
Rank 1
answered on 02 Jan 2013, 09:18 PM
Is there a workaround to fire an event when you do leave the series of a chart (pie is what I'm working with...) or even the chart itself? I have the chart in a simple DIV and the DIV is never hit.
I'm seeing several SVG paths when mousing out.
Thanks.
I'm seeing several SVG paths when mousing out.
Thanks.
0
Hi Brian,
I am afraid at present there is no event fired when you leave the chart's series. As a possible workaround you could hook up to the jQuery mouseleave event which will be triggered when the mouse leaves the chartArea. For example:
the Telerik team
I am afraid at present there is no event fired when you leave the chart's series. As a possible workaround you could hook up to the jQuery mouseleave event which will be triggered when the mouse leaves the chartArea. For example:
$(
"#chart"
).mouseleave(
function
(e){
//your logic
})
Regards,
Iliana Nikolovathe Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Brian Swiger
Top achievements
Rank 1
answered on 07 Jan 2013, 02:57 PM
MouseLeave worked like a champ. I was using MouseOut. Thank you!