Javascript Fullcalendar V4或V5,如何删除resourceTimeline类型中的插槽标签行

Javascript Fullcalendar V4或V5,如何删除resourceTimeline类型中的插槽标签行,javascript,fullcalendar,fullcalendar-4,fullcalendar-5,Javascript,Fullcalendar,Fullcalendar 4,Fullcalendar 5,我正在将fullcalendar scheduler 1.9.4升级到v5 beta2。 我发现slotLabelInterval的行为已从v3更改为v4 我的目标是:完全删除插槽标签行。我在V1.9.4中的设置如下(它可以工作): 但是设置“slotLabelInterval:'24:00:00'”在resourceTimeline中不使用Fullcalendar Scheduler 5 beta2(与v4相同)键入相同的内容 以上代码的屏幕截图: 我所尝试的: 与slotLabelIn

我正在将fullcalendar scheduler 1.9.4升级到v5 beta2。 我发现
slotLabelInterval
的行为已从v3更改为v4

我的目标是:完全删除插槽标签行。我在V1.9.4中的设置如下(它可以工作):

但是设置“slotLabelInterval:'24:00:00'”在
resourceTimeline
中不使用Fullcalendar Scheduler 5 beta2(与v4相同)键入相同的内容

以上代码的屏幕截图:

我所尝试的:

  • 与slotLabelInterval同时将slotDuration设置为24(不起作用)
  • 设置slotLabelFormat:{weekday:'short',month:'short'}(它不起作用,总是显示插槽时间标签)
问题:如何在v4(或V5 beta版)中使用V5制作与第一个屏幕截图相同的效果您可以这样设置相同的时间段:

slotLabelInterval: { days: 1 },
演示:

...    
weekNumbers: true,
views: {
            timelineThreeDays: {
              type: 'resourceTimeline',
              duration: { days: 3 },
              slotLabelInterval: '24:00:00'
            }
          },
...
slotLabelInterval: { days: 1 },