i have set the time range by createTimelineView to (9:00 - 18:30) but there is a problem when i move the created event
for example , there is an created event_A(time 10:00 to 12:00) now i move it and make its time start from 18:00, i expect the time would be 18:00-18:30(overflow is unnecessary), but actually the time is 18:00-20:00.
samples/06_timeline/09_drag_duration.html can recur this problem
scheduler.createTimelineView({
section_autoheight: false,
name: 'timeline',
x_unit: 'minute',
x_date: '%H:%i',
x_step: 30,
x_size: 20,
x_start: 18,
x_length: 48,
y_unit: this.sections,
y_property: 'section_id',
dx: 70,
dy: 120,
scrollable: true,
round_position: true,
column_width: 53,
event_dy: 'full',
// folder_dy: 100,
render: 'bar',
// dy:200,
// column_width:200
event_min_dy: 60
})