Hi Telerik,
I'm experiencing a strange behavior of the ScheduleView. I set schedule to view by day and had one hour increment as shown below. The ScheduleView had SnapAppointments="True". The problem is I couldn't adjust down to one hour slot, but I could change it through appointment edit dialog. For example, I couldn't slide end time from 3AM to 2AM where start time is 1AM. Any ideas what went wrong? Thanks.

I'm experiencing a strange behavior of the ScheduleView. I set schedule to view by day and had one hour increment as shown below. The ScheduleView had SnapAppointments="True". The problem is I couldn't adjust down to one hour slot, but I could change it through appointment edit dialog. For example, I couldn't slide end time from 3AM to 2AM where start time is 1AM. Any ideas what went wrong? Thanks.
<!-- ScheduleView --> <telerik:RadScheduleView x:Name="scheduleView" Grid.Row="2" MaxTimeRulerExtent="500" AppointmentsSource="{Binding Tasks, Mode=TwoWay}" ResourceTypesSource="{Binding ScheduleOptionList, Mode=TwoWay}" GroupDescriptionsSource="{Binding GroupCollection, Mode=TwoWay}" CurrentDate="{Binding DefaultDate}" NavigationHeaderVisibility="Collapsed" AllowDrop="True" SnapAppointments="True" Height="Auto"> <telerik:RadScheduleView.DragDropBehavior> <local:ScheduleDragDropBehavior/> </telerik:RadScheduleView.DragDropBehavior> <telerik:RadScheduleView.AppointmentItemContentTemplate> <DataTemplate> <StackPanel> <TextBlock Text="{Binding Subject}" FontWeight="Bold"/> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding Start, StringFormat={}{0:hh:mm tt}}"/> <TextBlock Text=" - "/> <TextBlock Text="{Binding End, StringFormat={}{0:hh:mm tt}}"/> </StackPanel> </StackPanel> </DataTemplate> </telerik:RadScheduleView.AppointmentItemContentTemplate> <telerik:RadScheduleView.ActiveViewDefinition> <telerik:DayViewDefinition Orientation="Horizontal" FirstDayOfWeek="Monday" TimerulerMajorTickStringFormat="{}{0:htt}" MinorTickLength="1h" MajorTickLength="1h" MinTimeRulerExtent="700" /> </telerik:RadScheduleView.ActiveViewDefinition> <telerik:RadScheduleView.GroupHeaderContentTemplateSelector> <telerik:OrientedGroupHeaderContentTemplateSelector> <telerik:OrientedGroupHeaderContentTemplateSelector.VerticalDayViewDateTemplate> <DataTemplate> <Grid Visibility="Hidden"/> </DataTemplate> </telerik:OrientedGroupHeaderContentTemplateSelector.VerticalDayViewDateTemplate> <telerik:OrientedGroupHeaderContentTemplateSelector.VerticalResourceTemplate> <DataTemplate> <TextBlock Width="60" Margin="5,0" Text="{Binding FormattedName}" HorizontalAlignment="Center" VerticalAlignment="Center" /> </DataTemplate> </telerik:OrientedGroupHeaderContentTemplateSelector.VerticalResourceTemplate> </telerik:OrientedGroupHeaderContentTemplateSelector> </telerik:RadScheduleView.GroupHeaderContentTemplateSelector> </telerik:RadScheduleView>