Create a Staff Roster/Rota/Schedule

Hi,

I would like to create a calendar/timeline that indicates a if a person is working, or has a rostered day off (RDO). I envisage something like this;

              Mon          Tue              Wed             Thur

Mike ON RDO LATE
John ON ON EARLY
Jeff ON RDO ON ON

The timeline came close using the default view in .createTimelineView, but shows a number indicating the number of events assigned to that person on that day.

I saw the ‘Multiple Resorces View’ demo - and that looks better; but instead of the resources (staff) across the top (x-axis) I’d like them on the side (y-axis), and change the time to show days, not hours.

Any tips on how to set this up?

Thanks!

but shows a number indicating the number of events assigned to that person on that day.
You can define your own template - it may show any data based on set of events which is assigned to that day.

Thanks,

I ended up formatting it using the following;

scheduler.createTimelineView({ section_autoheight: false, name: "timeline", x_unit: "day", x_date: "%D, %d %M", x_start: 2, x_step: 1, x_size: 7, y_unit: employees, y_property: "section_id", render: "bar", dy:50 });