views.eventSpacing Number
(default: 3)
Specifies the distance between individual events.
The
eventSpacing option is supported when
views.type` is set to "month".
Example - set the event spacing in month view
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
views: [
{
type: "month",
eventsPerDay: 4,
eventSpacing: 4
}
],
dataSource: [
{
id: 1,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview1"
},
{
id: 2,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview2"
},
{
id: 3,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview3"
},
{
id: 4,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview4"
}
],
height: 1000
});
</script>