I create scheduler like that:
[code]scheduler.createTimelineView({
name: “timeline”,
x_unit: “hour”,
x_date: “%H:%i”,
x_step: 6,
x_size: 28,
x_start: 0,
x_length: 24,
y_unit: rooms,
y_property: "room_id",
render: "bar",
round_position: true,
sort: timeframeSort,
second_scale:{
x_unit: "day",
x_date: "%d %F %Y"
}
});[/code]
But I want each day just display time from 6:00. What should I do?