Set start time for each day

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?

Hello,
unfortunatelly it cannot be done without modifying of timeline view source code. Timeline renders x-scale dates in sequence and can’t skip date in the middle of the view(like time from the end of the one day till 6am of the next day). This is also may affect detecting events time during d’n’d operations, since it’s expected that x-scale is continuous

Thank. I think it impossible with me :laughing: