Skip to main content
All docs
V25.1
  • 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

    true to display time spans; otherwise, false.

    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