DxSchedulerDayViewBase.TimeIndicatorVisibility Property
Specifies when to show the current time indicator.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.v25.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[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.
<DxScheduler StartDate="@DateTime.Today" DataStorage="@DataStorage">
<DxSchedulerDayView ShowWorkTimeOnly="true" TimeIndicatorVisibility="SchedulerTimeIndicatorVisibility.Always"></DxSchedulerDayView>
</DxScheduler>

Online Demo
See Also