New to Telerik UI for .NET MAUI? Start a free 30-day trial
Programmatic Scrolling
Updated on Nov 19, 2025
The Telerik UI for .NET MAUI Scheduler provides an option for programmatic scrolling. The option allows you to set up the Scheduler so that the view is scrolled to specific time, for example directly to the working hours. This can be achieved with the ScrollIntoView method.
The ScrollIntoView method scrolls the current View to the specified time. It accept a single parameter that can be of type IAppointment, Occurrence, or TimeOnly. The TimeOnly parameter supports only views with a TimeRuler—DayView, MultiDayView, and WeekView.
The snippet below shows how the method can be used - in short, it scrolls the view to "10AM":
c#
TimeOnly timeToScrollTo = new TimeOnly(10, 0, 0);
this.scheduler.ScrollIntoView(timeToScrollTo);