# Multi-Month Stack

You can create a specific type of [Multi-Month Grid](multimonth-grid.md) with a single column. The user must scroll to see months beyond the first.<!--more--> This is achieved by setting [multiMonthMaxColumns](multiMonthMaxColumns.md) to `1`.

Either install via [script tags](initialize-globals.md) or [ES build system](initialize-es6.md). Then initialize the calendar in JavaScript:

```js
import { Calendar } from 'fullcalendar'
import multiMonthPlugin from 'fullcalendar/multimonth'

const calendar = new Calendar(calendarEl, {
  plugins: [multiMonthPlugin],
  initialView: 'multiMonthYear',
  multiMonthMaxColumns: 1 // force a single column
});
```

[View a demo &raquo;](multimonth-stack-demo)

Months are separate by month headers that stick to the top of the scroll container. The text of the header is controlled by [singleMonthTitleFormat](singleMonthTitleFormat.md).

There are numerous other options throughout the docs that affect the display of Multi-Month view, such as the [date/time display options](date-display.md) and [locale-related options](localization.md).


## Without Month Headers

Want one continuous table of cells without month headers? [See dayGridYear view &raquo;](daygrid-view.md#year-view)


## Endless Scroll

Want endless scrolling of months that goes on forever? [Follow this GitHub ticket &raquo;](https://github.com/fullcalendar/fullcalendar/issues/2276)

## See Also

- [singleMonthTitleFormat](singleMonthTitleFormat.md) - In Multi-Month views, the format of the text above each month.
- [showNonCurrentDates](showNonCurrentDates.md) - In month view, whether dates in the previous or next month should be rendered at all.
- [fixedWeekCount](fixedWeekCount.md) - Determines the number of weeks displayed in a month view.
- [businessHours](businessHours.md) - Emphasizes certain time slots on the calendar. By default, Monday-Friday, 9am-5pm.
- [weekends](weekends.md) - Whether to include Saturday/Sunday columns in any of the calendar views.

## Demos

- [multiMonthYear as a vertical stack of months](multimonth-stack-demo)
