Weekdays
By default, the week starts on Sunday and displays all seven days. If you want the week to start on some other day, you can specify this using:
$myCalendar->weekstart("weekday");
For example, to start the week on a Monday, use:
$myCalendar->weekstart("Monday");
For some calendars, nothing will ever happen on the weekends. You can tell the calendar to skip weekends, thus leaving more space for the rest of the days of the week:
$myCalendar->skipweekends();
If you need to skip weekends on some but not other calendars on the same page, you can set it to skip weekends and then set it to not skip weekends:
$myCalendar->skipweekends(false);
