Search
MonthSettings.expandDayHeaders Property
See Also
 






Gets or sets a value indicating whether day headers should fill the whole day cell.

Namespace: MindFusion.Scheduling
File: MonthSettings.js

 Syntax

JavaScript  Copy Code

get expandDayHeaders() {}

 Property Value

Boolean. True to expand the headers, otherwise false.

 Example

The following code uses the expandDayHeaders property of MonthSettings to to indicate that day headers should fill the whole cell. Note: the code assumes you have initialized a <div> element with id “calendar” in a web page that references the JavaScript file, which contains this code:

JavaScript  Copy Code

// create a new instance of the calendar
var calendar = new p.Calendar(document.getElementById("calendar"));

calendar.monthSettings.expandDayHeaders = true;

 See Also