plotAreaLeave
Fired when the cursor leaves the plotArea.
Example - subscribe to the "plotAreaLeave" event during initialization
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dataSource: {
data: [
{ date: new Date("2023/1/1"), open: 100, high: 110, low: 95, close: 105 },
{ date: new Date("2023/1/2"), open: 105, high: 115, low: 100, close: 110 }
]
},
dateField: "date",
series: [{
type: "candlestick",
openField: "open",
highField: "high",
lowField: "low",
closeField: "close"
}],
plotAreaLeave: function(e) {
console.log("Plot area leave");
}
});
</script>
Event Data
e.sender kendo.dataviz.ui.StockChart
In this article