Calendar
Use the Event Calendar as a traditional month view or combine it with an agenda as a week view. The events can be rendered as labels or in a popover that is shown on day click.
Overview
The Calendar view supports everything from single to multiple week views all the way to month grids with various ways to render events.
The capabilities like recurring events, all-day, multi-day events, responsiveness are supported by the Event Calendar.

Showing the Calendar
View combination
The four views - scheduler, calendar, timeline, agenda - can be used alone or combined with each-other to create the perfect user experience on mobile, desktop and on everything in-between.
For example, you can choose to render an agenda below the calendar broken up into days ordered chronologically. The view option will look like the following:
<mbsc-eventcalendar [view]="myView"></mbsc-eventcalendar>
import { Component } from '@angular/core';
import { MbscEventcalendarView } from '@mobiscroll/angular';
@Component({...})
export class MyComponent {
myView: MbscEventcalendarView = {
calendar: { type: 'week' },
agenda: { type: 'day' }
};
}