Is there a way to allow the selected hours in the week view to occupy the entire vertical space? With the code below, I ended up with a very large footer rather than no footer and each hour just growing to occupy the available space. Thanks!
<syncfusion:SfSchedule x:Name="_schedule" Grid.Row="1" ScheduleView="WorkWeekView" DataSource="{Binding Appointments}">
<syncfusion:SfSchedule.AppointmentMapping>
<syncfusion:ScheduleAppointmentMapping StartTimeMapping="StartDateTime" EndTimeMapping="EndDateTime" SubjectMapping="Subject" ColorMapping="Color" />
</syncfusion:SfSchedule.AppointmentMapping>
<syncfusion:SfSchedule.WorkWeekViewSettings>
<syncfusion:WorkWeekViewSettings WorkStartHour="8" WorkEndHour="17" StartHour="7" EndHour="18" />
</syncfusion:SfSchedule.WorkWeekViewSettings>
</syncfusion:SfSchedule>