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