The cell height is extended automatically to display all the events.

The minimum cell height can be set using MinCellHeight property. The default value is 100.

In the cell stacking mode the monthly calendar displays cell with fixed height (MinCellHeight is used) and a vertical scrollbar is added to the cell if there are many events.

JavaScript

<div id="dp"></div>

<script type="text/javascript">
  var dp = new DayPilot.Month("dp");
  dp.minCellHeight = 30;
  // ...
  dp.init();
</script>

ASP.NET WebForms

<DayPilot:DayPilotMonth 
  ID="DayPilotMonth1" 
  runat="server" 
  ...
  MinCellHeight="30"
  
  />

ASP.NET MVC

@Html.DayPilotMonth("dpm", new DayPilotMonthConfig { 

  // ...
  MinCellHeight = 30,
  // ...
	
})