fullcalendar/display/contentHeight.txt

26 lines
488 B
Plaintext
Raw Permalink Normal View History

2010-01-16 23:29:18 +01:00
contentHeight *1.4.2*
=====================
Will make the calendar's content area a pixel height.
<div class='spec' markdown='1'>
Integer
</div>
By default, this option is unset and the calendar's height is calculated by [aspectRatio]().
Example usage of `contentHeight`:
$('#calendar').fullCalendar({
contentHeight: 600
});
Setter
2010-01-16 23:29:18 +01:00
------
You can dynamically set a calendar's contentHeight after initialization:
2010-01-16 23:29:18 +01:00
$('#calendar').fullCalendar('option', 'contentHeight', 650);