Event position (top)

I’m triyng to set up custom width and height to the event in the timeline scheduler.
I’ve changed the height, width and color of the event, but i noticed that changing height overlap events .

I see thah the “top” css property is dinamically set during the script.

Is there a way to solve this issue? My event in the timeline should be 100*80px and should not overlap.

Thank you in advance

You can add the next line to scheduler’s init

scheduler.xy.bar_height = 50; //or any other value

Thankyou, your code solved the problem!