This option set the max months names length by setting the property CalendarComponent.MAX_MONTHS_NAMES_LENGTH.
The code below changes the maximum number of letters used for displaying the months names: 
<CODE>
CalendarComponent calendarComponent = new CalendarComponent();
calendarComponent.setCalendarProperty(CalendarComponent.MAX_MONTHS_NAMES_LENGTH, new Integer(5));
</CODE>
