设置日程表的宽高比,值为浮点型,默认1.35。日程表是块级元素,会尽量撑满宽度,日程表的高度则有aspectRatio决定(提示:)。
下面的例子会显示一个宽为高两倍的日程表:
$('#calendar').fullCalendar({ aspectRatio: 2 });
可以在日程表初始化之后动态的设置aspectRatio:
$('#calendar').fullCalendar('option', 'aspectRatio', 1.8);
官方英文文档:http://arshaw.com/fullcalendar/docs/display/aspectRatio/