Is there a property to turn off the visibility of the hours and only display the "All Day Events" section?
My appointments don't use hours but happen daily and I was just looking to turn off the hours section to save on screenspace.
Ian
No, the control does not support that behavior. If you like you can visit http://devcenter.infragistics.com/Protected/RequestFeature.aspx and submit a request for the feature.
Thanks for the repsponse.
After doing some testing this is currently available in 8.2
Set the DayView as follows:
dayview.CalendarInfo.LogicalDayOffset = TimeSpan.FromHours(0);dayview.CalendarInfo.LogicalDayDuration = TimeSpan.FromHours(1);
Using this all I see is All Day events, the scrollbar is still visible on the right but it won't let me scroll down to the hours section.
Hope this helps anyone else.