New to Telerik UI for .NET MAUIStart 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 TimeRulerDayView, 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);

See Also

In this article
See Also
Not finding the help you need?
Contact Support