shifted hour scale in day view ?

Hello,
may be possible to shift the hour scale in day view?
i.e. having from 8:00 to 7:59 instead from 00:00 to 23:59

I’m working for a film festival and we would need that screening of 1:00am would appear on the same column as the screening of previus day, with the limit of 4:00a as changing day/column.

I suppose this implies those actions

  • changing the hour scale values
  • hack the event positioning in column
  • hack the column choosing when placing the event

Thanks Lorenzo

Altering the scale is pretty simple

scheduler.config.first_hour=8; scheduler.config.last_hour=32;

scheduler._pre_render_events_line

//check scale overflow
var sh = ev.start_date.getHours();
var eh = ev.end_date.getHours();

You need either alter those values, or disable code block which controls scale overflow, later in the same method

scheduler._get_event_sday
get event object, returns day of week where event need to be placed