This is a migrated thread and some comments may be shown as answers.

OnClientSeriesOutHovered

1 Answer 87 Views
Chart (HTML5)
This is a migrated thread and some comments may be shown as answers.
Juan Carlos
Top achievements
Rank 1
Juan Carlos asked on 26 Oct 2012, 04:42 PM
Hello, please help.
I'm working with RadHtmlChart
I'm using the event OnClientSeriesHovered
but now I need the opposite case.
When I remove the cursor from one of the columns ...

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 29 Oct 2012, 05:38 AM
Hello,

One suggestion is that you can attach mouseleave Event using Jquery as follows.

ASPX:
<telerik:RadHtmlChart runat="server" ID="PieChart1" CssClass="Class1" >
</telerik:RadHtmlChart>

JS:
<script type="text/javascript">
 $(".Class1").mouseleave(function () {
    // Your Code
 });
</script>

Thanks,
Princy.
Tags
Chart (HTML5)
Asked by
Juan Carlos
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or