These docs are for an old release. Info on upgrading to v6

Timeline View with no Resources

You might like the way the time axis operates in Timeline view, but you simply don’t want to display resource rows. If this is the case, you can initialize a plain timeline view in an ES6 setup like so:

import { Calendar } from '@fullcalendar/core';
import timelinePlugin from '@fullcalendar/timeline';
...
let calendar = new Calendar(calendarEl, {
  plugins: [ timelinePlugin ],
  initialView: 'timelineWeek'
});
...

Or, you can choose to initialize Timeline view with the fullcalendar-scheduler global bundle:

<link href='fullcalendar-scheduler/main.css' rel='stylesheet' />
<script src='fullcalendar-scheduler/main.js'></script>
<script>
...
var calendar = new FullCalendar.Calendar(calendarEl, {
  initialView: 'timelineWeek'
});
...
</script>