New to Telerik UI for .NET MAUI? Start a free 30-day trial

Current Time Indicator

The Telerik UI for .NET MAUI Scheduler control provides the option to visually mark the current time in the time ruler and across the appointments area through the views' IsCurrentTimeIndicatorVisible property.

  • IsCurrentTimeIndicatorVisible(bool)—Indicates whether the current time indicator is visible across the active view.

Disable the CurrentTimeIndicator

Current Time Indicator is enabled by default, you can hide it by setting IsCurrentTimeIndicatorVisible of the corresponding view to False:

<telerik:RadScheduler x:Name="scheduler" ActiveViewDefinitionIndex="2">
    <telerik:RadScheduler.ViewDefinitions>
        <telerik:WeekViewDefinition IsCurrentTimeIndicatorVisible="False" />
        <telerik:MultidayViewDefinition IsCurrentTimeIndicatorVisible="False" VisibleDays="3" Title="3 Day" />
        <telerik:DayViewDefinition IsCurrentTimeIndicatorVisible="True" />
    </telerik:RadScheduler.ViewDefinitions>
</telerik:RadScheduler>

See Also

In this article