allDayDefault

Determines the default value for each Event Object's allDay property, when it is unspecified.

ignoreTimezone

When parsing ISO8601 dates, whether UTC offsets should be ignored while processing event source data.

The default is true, which means the UTC offset for all ISO8601 dates will be ignored. For example, the date "2008-11-05T08:15:30-05:00" will be processed as November 5th, 2008 at 8:15am in the local offset of the browser.

If you are using ISO8601 dates with UTC offsets, chances are you want them processed. You must set this option to false. In the future, the default for this option will probably be changed to false.


lazyFetching

Determines when event fetching should occur.

When set to true (the default), the calendar will only fetch events when it absolutely needs to, minimizing AJAX calls. For example, say your calendar starts out in month view, in February. FullCalendar will fetch events for the entire month of February and store them in its internal cache. Then, say the user switches to week view and begins browsing the weeks in February. The calendar will avoid fetching events because it already has this information stored.

When set to false, the calendar will fetch events any time the view is switched, or any time the current date changes (for example, as a result of the user clicking prev/next).


eventColor

Sets the background and border colors for all events on the calendar.

You can use any of the CSS color formats such #f00, #ff0000, rgb(255,0,0), or red

eventBackgroundColor

Sets the background color for all events on the calendar.

You can use any of the CSS color formats such #f00, #ff0000, rgb(255,0,0), or red.


eventBorderColor

Sets the border color for all events on the calendar.

You can use any of the CSS color formats such #f00, #ff0000, rgb(255,0,0), or red.

eventTextColor

Sets the text color for all events on the calendar.

You can use any of the CSS color formats such #f00, #ff0000, rgb(255,0,0), or red.