eventHeightNumber(default: 600)
Sets specific height for the event in horizontal mode.
This setting is supported only in horizontal mode.
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",
altField: "Canary Islands"
},
{
date: new Date(2020, 10, 15),
title: "United States",
subtitle: "Elections",
description: "The 2020 US election"
}
],
orientation: "horizontal",
eventHeight: 400
});
</script>
In this article