Skip to main content
All docs
V25.2
  • DxSchedulerMonthView.CellMinHeight Property

    Specifies the minimum cell height in the month view.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.2.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(0)]
    [Parameter]
    public int CellMinHeight { get; set; }

    Property Value

    Type Default Description
    Int32 0

    The minimum cell height in pixels.

    Remarks

    The CellMinHeight property specifies the minimum height of time/resource cells that display appointments. The Scheduler component can increase the height if the specified value does not accommodate the following elements:

    The following image displays a month view with its CellMinHeight property specified. Cells in the first week are expanded to fit appointments, while other weeks use the specified value:

    Scheduler Month View with Cell Height Restriction

    Code Example

    The following example sets CellMinHeight to 60:

    <DxScheduler @bind-StartDate="@StartDate"
                 DataStorage="@DataStorage"
                 GroupType="SchedulerGroupType.Date">
        <DxSchedulerMonthView CellMinHeight="50" />
    </DxScheduler>
    
    See Also