Skip to main content
All docs
V25.1
  • DxSchedulerMonthView.ShowAppointmentDateTimeRange Property

    Specifies whether appointment time spans are visible.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(false)]
    [Parameter]
    public bool ShowAppointmentDateTimeRange { get; set; }

    Property Value

    Type Default Description
    Boolean false

    true to display time spans; otherwise, false.

    Remarks

    The Scheduler Month view does not display appointment time spans:

    Month View - Date-Time Range is not Visible

    Set the ShowAppointmentDateTimeRange property to true to display appointment date-time ranges:

    <DxScheduler @bind-StartDate="DateTime.Now"
                 DataStorage="@DataStorage">
        <DxSchedulerMonthView MonthCount="1" 
                              ShowWorkDaysOnly="false" 
                              CellMinWidth="120" 
                              ShowAppointmentDateTimeRange="true"></DxSchedulerMonthView>
    </DxScheduler>
    

    Month View - Date-Time Range is Visible

    See Also