views.minorTickCount Number
(default:2)
The number of time slots to display per major tick.
The
minorTickCount
option is supported when views.type is set to "day", "week" or "timeline".
Example - set the number of time slots
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
views: [
{
type: "day",
minorTickCount: 1 // display one time slot per major tick
},
],
dataSource: [
{
id: 1,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview"
}
]
});
</script>