Hi,
I am new to dhtmlx and I am having problems with a timeline view. It is working, but I am having two issues with it:
First, It is not showing “short” events. (i.e. 1-5 min events).
Here is my view:
scheduler.createTimelineView({
name: “timeline”,
x_unit: “hour”,
x_date: “%H:”,
x_step: 1,
x_size: 24,
x_start: 0,
x_length: 24,
y_unit: sectinos,
y_property: “section_id”,
render:“bar”
});
I am able to see “long events” (> 15 min), but “short” ones are not showing up. Can I force the short ones to show even if the scale is wrong?
Second: It seems the scale is off on the “long” events. I am not sure if I am doing something wrong or not. A 60 min event is not taking the whole time slot (1 hour). It looks like a “45 min” event (3/4 of the slot).
Thanks in advance.