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:
- All appointments.
- Resource caption, if visible.
- Empty space under the last appointment (LastAppointmentIndent). Users can click this area to create new appointments.
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:

Code Example
The following example sets CellMinHeight to 60:
<DxScheduler @bind-StartDate="@StartDate"
DataStorage="@DataStorage"
GroupType="SchedulerGroupType.Date">
<DxSchedulerMonthView CellMinHeight="50" />
</DxScheduler>
See Also