Getting Started
Installation
Make sure to also import the css somewhere in your application
Creating your first calendar
Important!
Result
July 2025
Sun
Mon
Tue
Wed
Thu
Fri
Sat
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
Colors and multi-day events
To add colors to events, assign each event to one or more groups. If an event is assigned to multiple groups, the event will be shown with multiple colors.
To display multi-day events, add an end to the event.
Result
August 2024
Sun
Mon
Tue
Wed
Thu
Fri
Sat
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Adding time to events
To display an event along with a time, set isAllDay
to false
.
The calendar will attempt to read the time from the start
and end
properties. This can be overridden using the startTime
property. If no end
or endTime
is provided, the event will default to a one-hour event.
The following calendar demonstrates how different permutations of isAllDay
, start
, end
, startTime
and endTime
are parsed into valid event objects.
Result
August 2024
Sun
Mon
Tue
Wed
Thu
Fri
Sat
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
On this page