The HeightSpec property specifies how the control height will be determined.

Supported values:

  • Auto (default)
  • Fixed
  • Parent100Pct

Auto

  • Height: Calculated automatically to show all weeks.
  • Scrollbar: hidden

Fixed

  • Height: Specified in Height property (pixels).
  • Scrollbar: visible

Parent100Pct

  • Height: 100% of the parent element.
  • Scrollbar: visible

See also 100% height.

JavaScript

<div id="dp"></div>
<script type="text/javascript">
  var dp = new DayPilot.Month("dp");
  dp.heightSpec = "Fixed";
  dp.height = 400
  // ...
  dp.init();
</script>

Java (JSP)

<div id="dp"></div>
<script type="text/javascript">
  var dp = new DayPilot.Month("dp");
  dp.backendUrl = "${pageContext.request.contextPath}/dpm";
  dp.heightSpec = "Fixed";
  dp.height = 400;
  // ...
  dp.init();
</script>

ASP.NET WebForms

<DayPilot:DayPilotMonth runat="server" id="DayPilotMonth1"
  ...
  HeightSpec = "Fixed"
  Height="400"
/>

ASP.NET MVC

@Html.DayPilotMonth("dpm", new DayPilotMonthConfig {
  BackendUrl = ResolveUrl("~/Month/Backend"),
  ...
  HeightSpec = HeightSpec.BusinessHours,
  Height = 400
})