Skip to main content
A newer version of this page is available. .

DxSchedulerDayViewBase.TimeIndicatorVisibility Property

Specifies when to show the current time indicator.

Namespace: DevExpress.Blazor.Base

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Default Description
SchedulerTimeIndicatorVisibility **TodayView**

One of the SchedulerTimeIndicatorVisibility values.

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.

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

Online Demo

Scheduler — View Types

See Also