Is there any way to achieve vertical scrolling of dates.Can it be done with the help of css change ? This is my code for the calendar. Is there any other JS calendar that has verrtical scroll of dates in week view ?

document.addEventListener('DOMContentLoaded', function() {
      var calendarEl = document.getElementById('calendar');

      var calendar = new FullCalendar.Calendar(calendarEl, {
   
        selectable: true,
        resourceAreaWidth:'10%',
        locale: 'ja',
        slotDuration:'00:30:00',
        aspectRatio: 2.8,
        slotMinTime:"08:30:00",
        slotMaxTime:"20:30:00",
        slotLabelInterval:"00:30:00",
        //eventContent: 'some text', timeGridWeek listWeek
        headerToolbar: {
               left: '',
               center: 'title',
               right: 'resourceTimelineDay resourceTimelineFiveDays'
             },
             footerToolbar: {
                    center: 'prev next'
                  },
             initialView: 'resourceTimelineDay',
             views: {
               resourceTimelineFiveDays: {
                 type: 'resourceTimeline',
                 duration: { days: 5 },
                 buttonText: '週'
               },
               resourceTimelineDay: {
                 type: 'resourceTimeline',
                 duration: { days: 1 },
                 buttonText: '今日'
               }
             },
0

There are 0 best solutions below