Hi,
I'm using the ejs2 Schedule component with the TimelineDay view. Is it possible to add a custom timerange to the view over multiple days?
For example, I want to show all the hours between 5th of november 8AM tot 6th of november 2AM.
If tried adding the following property:
views: [
{
option: 'TimelineDay',
interval: 2,
startHour: '08:00',
endHour: '02:00'
}
]
but then it doesn't render. If I change the endHour to '26:00', then it renders, but the start hour for the second day is also 08:00 and my events don't render.
views: [
{
option: 'TimelineDay',
interval: 1,
startHour: '08:00',
endHour: '26:00'
}
]
This renders the timeline like I want it to, but my events are not rendered...
I need the timeline to have all the hours between my start (date)time and end (date)time.
Is this possible?
Thanks in advance!