Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxSchedulerDayViewBase.TimeIndicatorVisibility Property

Specifies when to show the current time indicator.

Namespace: DevExpress.Blazor.Base

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[DefaultValue(SchedulerTimeIndicatorVisibility.TodayView)]
[Parameter]
public SchedulerTimeIndicatorVisibility TimeIndicatorVisibility { get; set; }

#Property Value

Type Default Description
SchedulerTimeIndicatorVisibility TodayView

A SchedulerTimeIndicatorVisibility enumeration value.

Available values:

Name Description
Never

The current time indicator is never shown.

Always

The current time indicator is always shown.

TodayView

Shows the current time indicator in the Day View only.

#Remarks

The current time indicator can be always visible/hidden or shown only in the View.

Razor
<DxScheduler StartDate="@DateTime.Today" DataStorage="@DataStorage">
    <DxSchedulerDayView ShowWorkTimeOnly="true" TimeIndicatorVisibility="SchedulerTimeIndicatorVisibility.Always"></DxSchedulerDayView>
</DxScheduler>

Scheduler - A time indicator in Day view

#Online Demo

Scheduler — View Types

See Also