I can’t figure out why
tks
Seby
Hi,
it’s a normal positioning of the events in the month view with some spaces for better readability.
Hi,
is there a possebility to configure the space between the events in month view?
Thanks for your reply.
~miri
Hi,
positions of month items are calculated using scheduler.xy.bar_height config,
docs.dhtmlx.com/scheduler/api__s … other.html
You may try to decrease the value, however, it may have a side effects on a other parts of the scheduler. Probably you can apply the setting only for the month view, in order to prevent them:
scheduler.attachEvent("onBeforeViewChange", function(old_mode,old_date,mode,date){
if(mode == "month")
scheduler.xy.bar_height = 18;
else
scheduler.xy.bar_height = 24;
return true;
});
docs.dhtmlx.com/scheduler/api__s … event.html
Thanks!
I agree, it has some side effects. Probably something to optimize in the future.
~miri