dataBound
Fires when the Timeline is bound to data.
Example
<div id="timeline"></div>
<script>
$("#timeline").kendoTimeline({
dataSource: [
{
date: new Date(2020, 10, 10),
title: "Barcelona \u0026 Tenerife",
subtitle: "Spain",
description: "The 2020 Spanish election"
},
{
date: new Date(2020, 10, 15),
title: "United States",
subtitle: "Elections",
description: "The 2020 US election"
}
],
dataBound: function(e) {
console.log("Timeline data bound");
}
});
</script>
Event Data
e.sender kendo.ui.Timeline
The widget instance which fired the event.
In this article