Hi,
We are using 16.2 version and using an UltraDayView bound to an UltraCalendarInfo. The problem we are facing is that there are appointments that are being shown overpaled. We'd like to show one appointment by row when the starting time of next appointment is equal or gretar than the end time of the previous appointment. You can see from the attached image how appointments are being shown. We want this to appear on appointment by line:
1) 15:00 - 15:06 - MARCADA
2) 15:06 - 15:15 - MARCADA
3) 15:15 - 15:24 - MARCADA (this one appears already correct, in on line)
...
There should only overlap if end time of the appointment is breater than the start time of next appointment. How can we achieve this? Should we crate a filter? How?
Thanks.
Hello,
I believe you will get the effect you want if you set the TimeSlotInterval property on the UltraDayView to something smaller. Try using
this.ultraDayView1.TimeSlotInterval = TimeSlotInterval.OneMinute;
Please let me know whether this works for your requirement.
Hi Mike,
With that option we get that effect but that sets us with another problem. The schedule it's going to be too big in height. Each appointment occupies to much screen space. We have appointments that could go from 8:00 to 20:00, each with a period that can go between 3minutes to 30minutes, and setting interval to 1minute we have big blocks for each appointment.
Isn't there any other option to do this?