Hours grouping in scheduler timeline view

Hi, I need hours grouping like show all events from 12am to 7am in one column and other events with separate columns like shown in figure.

I have tried:

[code]first_hour: 2,
last_hour: 11

and:

scheduler.ignore_timeline = function (date) {
if (date.getHours() < 10 || date.getHours() > 18) return true;
};[/code]

but its not giving required results. How can I implement that?

Hello,

As I answered you earlier ( docs.dhtmlx.com/scheduler/timeli … 3065634273 ), there is no built-in way to implement such scale. You just can hide part of scale, but it’s not possible to join some hours like on your screenshot.