@fullcalendar/list

Display events on a calendar view that looks like a bulleted list

@fullcalendar/list downloads @fullcalendar/list version @fullcalendar/list license

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

FullCalendar List View Plugin

Display events on a calendar view that looks like a bulleted list

Installation

Install the necessary packages:

npm install @fullcalendar/core @fullcalendar/list

Usage

Instantiate a Calendar with the necessary plugin:

import { Calendar } from '@fullcalendar/core'
import listPlugin from '@fullcalendar/list'

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

calendar.render()