When using Timeline Month View, I would like to have the scheduler control fill the available space regardless of the number of days in the month and display the full month without a scroll bar at the bottom.
Setting the width of the table columns to 50px achieves the appearance I want without the scrollbar. Great. The appointments however are offset in different months. For example, November the appointments appear offset but in December they look fine.
November:
December:
This is the css I have used to set the column width:
.schedule-date-header-template .e-timeline-month-view .e-date-header-wrap table col,
.schedule-date-header-template .e-timeline-month-view .e-content-wrap table col {
width: 50px !important;
}
If I don't have that set, I get the horrible scrollbar but the appointments line up in the correct slot. I just want the full month to be displayed, what's the solution?
November (No css):
December (No css):