Hi folks,
I have a requirement for events to be scheduled in 5 minute increments, I have implemented the following code in the scheduler config:
views: [
{
type: "day",
minorTickCount: 30, // display one time slot per major tick
majorTick: 60
},
]
This serves the purpose but the actual slots are around 30 pixels in height, this means that the schedule for the full day is very long and
overflows off the bottom of the page. Ideally I would like the entire schedule to only take up a max of 900-1000px in height with the slots
being much smaller in height, is there an intelligent way of doing this?
Thanks in advance