3 Axis

Hi

I want to make a scheduler for a group of around 15 people. I want to have there names down the left hand side and on top have the times 00:00 - 24:00, but above that i want to have the dates so it would say 24th June today and if you pressed the arrow it would go to 25th and the 00:00 - 24:00 would be for the 25th instead.

Is this possible with DHTMLX? If so, can anyone point me in the direction of something they can get me started on this please?

Thanks

Hi,
as I understand you need a timeline view with a second X-scale:
docs.dhtmlx.com/scheduler/sample … scale.html
To display one day with 00:00-24:00 set:

scheduler.createTimelineView({ ... x_unit: "hour", x_date: "%H:%i", x_step: 1, x_size: 24, x_length: 24, ... });