views.columnWidth Number
(default: 100)
The width of the table columns in timeline views. Value is treated as pixels.
The
columnWidth
option is supported when views.type is set to "timeline", "timelineWeek", "timelineWorkWeek" or "timelineMonth".
Example - set the columnWidth in timelineWeek view
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
views: [
{
type: "timelineWeek",
columnWidth: 50
}
],
dataSource: [
{
id: 1,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview"
}
]
});
</script>