0

I am using kenod box plot in my project. Is there any way i can get a hover event when the user hovers over the box plot chart? Not the(onserieshover)event ,but on simply hover on chart area?

Help needed

user1076698
  • 691
  • 3
  • 10
  • 21

1 Answers1

0

You can add event listener for mouseover event to the div tag of your chart. Please see below example

<html>
<body>
<div id="kendoChart></div>
</body>
<script>
 document.getElementById("kendoChart").addEventListener("mouseover",kendoChartMouseOver);

function kendoChartMouseOver()
{
 @* Do Something On Mouse Hover *@
}
</script>
</html>

I have not tested the above code but it should work fine.

Nitin Mall
  • 462
  • 2
  • 5