DxSchedulerDayViewBase.ShowAppointmentDateTimeRange Property
Specifies whether appointment time spans are visible.
Namespace: DevExpress.Blazor.Base
Assembly: DevExpress.Blazor.v25.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(true)]
[Parameter]
public bool ShowAppointmentDateTimeRange { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Remarks
The Scheduler Day/Week/Work Week views display appointment time spans:
Set the ShowAppointmentDateTimeRange
property to false
to hide appointment date-time ranges:
<DxScheduler StartDate="DateTime.Now"
DataStorage="@DataStorage">
<DxSchedulerDayView ShowWorkTimeOnly="ShowWorkTimeOnly"
DayCount="1"
ShowAppointmentDateTimeRange="false"></DxSchedulerDayView>
</DxScheduler>
See Also