I need some help aligning a custom footer with aggregated values to the timeslot columns of a RadScheduleView (see attached screenshot). How can I get the actual width property of each individual timeslot column? With the RadScheduler we could do something similar to this:
But how do I achieve this in the RadScheduleView control?
Thanks.
AppointmentsControl _ac =
this
.theScheduler.ChildrenOfType<AppointmentsControl>().Single(ac => ac.Name ==
"NotAllDayAppointmentsControl"
);
int
iActualWidth = _ac.ChildrenOfType<TimeSlotItem>().First().ActualWidth;
But how do I achieve this in the RadScheduleView control?
Thanks.