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
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
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.