Back to Fullcalendar

Month View

_docs-v6/month-view/month-view.md

latest760 B
Original Source

The Month view is a specific type of DayGrid view called dayGridMonth. Either install via script tags or individual packages like so:

npm install --save \
  @fullcalendar/core \
  @fullcalendar/daygrid

Then initialize the calendar in JavaScript:

js
import { Calendar } from '@fullcalendar/core'
import dayGridPlugin from '@fullcalendar/daygrid'

const calendar = new Calendar(calendarEl, {
  plugins: [dayGridPlugin],
  initialView: 'dayGridMonth'
});

View a demo »

There are numerous other options throughout the docs that affect the display of DayGrid view, such as the date/time display options and locale-related options.