Hello there,
My application may require a Time slot of 90 minutes in some cases.
Therefore, I am doing something like
@(Html.EJ().Schedule("ELLCalendar")
.Width("100%")
.Height("525px")
.CurrentDate(DateTime.Today)
.CurrentView(CurrentView.Day)
.ShowWeekend(false)
.Orientation(Orientation.Horizontal)
.TimeScale(ts => ts.Enable(true).majorSlot(90.minorSlotCount(1))
But if I do this, the Schedule does not render time label properly at the top.
As you see here, I am expecting to see time from 8AM to 9:30, 9:30 to 11 and so forth.
When I double click on each slot to open window, it properly recognizes that it's 90 mins slot.
How can I fix this issue?