@fullcalendar/daygrid
Display events on a month view or "day grid" view

@fullcalendar/daygrid downloads @fullcalendar/daygrid version @fullcalendar/daygrid license

@fullcalendar/daygridSimilar Packages:
Npm Package Weekly Downloads Trend
3 Years
🌟 Show real-time usage chart on @fullcalendar/daygrid's README.md, just copy the code below.
## Usage Trend
[![Usage Trend of @fullcalendar/daygrid](https://npm-compare.com/img/npm-trend/THREE_YEARS/@fullcalendar/daygrid.png)](https://npm-compare.com/@fullcalendar/daygrid#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 Show GitHub stars trend chart on @fullcalendar/daygrid's README.md, just copy the code below.
## GitHub Stars Trend
[![GitHub Stars Trend of @fullcalendar/daygrid](https://npm-compare.com/img/github-trend/@fullcalendar/daygrid.png)](https://npm-compare.com/@fullcalendar/daygrid)
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
@fullcalendar/daygrid1,117,51520,043202 kB1,0753 months agoMIT
README for @fullcalendar/daygrid

FullCalendar Day Grid Plugin

Display events on a month view or "day grid" view

Installation

Install the necessary packages:

npm install @fullcalendar/core @fullcalendar/daygrid

Usage

Instantiate a Calendar with the necessary plugin:

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

const calendarEl = document.getElementById('calendar')
const calendar = new Calendar(calendarEl, {
  plugins: [dayGridPlugin],
  initialView: 'dayGridMonth',
  events: [
    { title: 'Meeting', start: new Date() }
  ]
})

calendar.render()