Hello!
Thanks again for your great product!
I use Scheduler v 3.5
Please see attached image first.
- I want to have some events with narrow width. (In image marked red line) I tried to change width in scheduler.renderEvent:
scheduler.renderEvent = function(container, event)
{
if (event.isNarrow) {
container.style.width = ‘20px’;
}
But I have margin (In image marked blue line). How I can fix it?
- I want, that narrow events will be always at right side (green arrow in image). Is it possible? First idea is to load it after all events (I have not tried it yet).