Snapping Appointments
RadScheduler provides the option to automatically snap the appointments while resizing/dragging them. This behavior is enabled through the SnapAppointments boolean property.
Example 1: Setting the SnapAppointments property
Figure 1: Snap behavior when SnapAppointments is False
Figure 2: Snap behavior when SnapAppointments is True
When dragging an appointment, the default snap behavior rounds the appointment's start time to the closest tick.
You could set MinorTickLength property of the ViewDefinition in order to snap the appointments to different duration:
Example 2: Setting the MinorTickLength
Figure 3: Result from Example 2
You can check Configuring the TimeRuler ticks article for more details about MinorTickLength property.
Customizing the SnapBehavior
For more advanced scenarios when snapping of the appointments is not directly connected with the time slots, the RadScheduler control provides a way to customize the snapping of the appointments in a more detailed manner. You just need to create a class which inherits from Telerik.UI.Xaml.Controls.Scheduler.SnapBehavior and to override its SnapStart and SnapEnd methods. Then an instance of this class should be set to the SnapBehavior property of RadScheduler.
Examples 3 and 4 demonstrate how to set the snapping to 5 minutes regardless of the TimeSlots length.