I have a second scale displaying correctly over my 5 minute increments in the primary scale. However, I want the second scale hour to start at 19:00 and go till 05:00 (a whole day plus 5 hours on either side. I tried setting the scale just like I would the primary scale to show in this manner but it always starts at 00:00.
Working with a single scale:
scheduler.createTimelineView({
section_autoheight: false,
name: "timeline",
x_unit: "hour",
x_date: "%H:%i",
x_step: 1,
x_size: 34,
x_start: 19,
x_length: 34,
y_unit: sections,
y_property: "section_id",
render: "tree",
folder_events_available: false,
dy: 20
});
Not Working with Multiple Scales:
scheduler.createTimelineView({
section_autoheight: false,
name: "timeline",
x_unit: "minute",
x_date: " ",
x_step: 5,
x_size: 408,
x_start: 0,
x_length: 408,
y_unit: sections,
y_property: "section_id",
render: "tree",
folder_events_available: false,
dy: 20,
second_scale: {
x_unit: "hour",
x_date: "%H:%i",
x_step: 1,
x_size: 34,
x_start: 19,
x_length: 34
}
});