Render only multidays events in Week View

Hello,

Is it possible to render only multidays events (hide hours) in Week View ?

I can do it with CSS :
.dhx_scale_holder { display:none;}

but I wonder if there is another way.

Thanks,

Hello,
there is no designed way to hide hours area of the calendar, so ‘display:none’ is a suitable way.
You can also set .last_hour of the time scale to 0, so scheduler won’t render single-day events at all

scheduler.config.first_hour = scheduler.config.last_hour = 0;