plotAreaLeave
Fired when the cursor leaves the plotArea.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "line",
series: [{
data: [10, 15, 8, 12]
}],
plotAreaLeave: function(e) {
console.log("Left plot area");
}
});
</script>
Event Data
e.sender kendo.dataviz.ui.Sparkline
In this article