remove hour by hour display on daily and weekly view

Currently I am using the addEvent function to add events on the schedular.

scheduler.addEvent(“01-05-2010”, “05-05-2010”, “Testing”);

When I look at the daily and weekly view, the events are being displayed on the top, on the side of the “clock” icon, but the hour-by-hour display is empty.

Is it possible to completely remove the hour-by-hour display from the daily and weekly views?

I attached a screen shot for people to better understand the problem


Not sure if this will work, but might get you close to how you want it? :smiley:

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

this blocks off everything on the daily and weekly view. I cannot see my events now.

Oops! :slight_smile:

Can you try any variances on this?

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

or similar? Stansilav might have an answer…

fixed thanks

Unfortunately I also don’t see any other solution

It possible to hide the hour scale itself, but not the whole time-area ( at least it was never purposed for such use-case )

Hi, how do you hide the time scale on the daily view or weekly view?

Thanks.

scheduler.xy.scale_width = 0;

Thanks, that solution works. :slight_smile: