blazor-devexpress-dot-blazor-dot-dxschedulermonthview-5dfedca1.md
Specifies the minimum cell height in the month view.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(0)]
[Parameter]
public int CellMinHeight { get; set; }
| Type | Default | Description |
|---|---|---|
| Int32 | 0 |
The minimum cell height in pixels.
|
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:
The following example sets CellMinHeight to 60:
<DxScheduler @bind-StartDate="@StartDate"
DataStorage="@DataStorage"
GroupType="SchedulerGroupType.Date">
<DxSchedulerMonthView CellMinHeight="50" />
</DxScheduler>
See Also