我正在将 fullcalendar-scheduler 1.9.4 升级到 v5 beta2。我发现 的行为slotLabelInterval
已从 v3 更改为 v4。
我的目标:我想完全删除插槽标签行。我在 V1.9.4 中的设置如下(有效):
...
weekNumbers: true,
views: {
timelineThreeDays: {
type: 'timeline',
duration: { days: 3 },
slotLabelInterval: '24:00:00'
}
},
...
但是设置“slotLabelInterval: '24:00:00'”resourceTimeline
与 Fullcalendar-Scheduler 5 beta2(与 v4 相同)的类型不同
...
weekNumbers: true,
views: {
timelineThreeDays: {
type: 'resourceTimeline',
duration: { days: 3 },
slotLabelInterval: '24:00:00'
}
},
...
我尝试过的:
- 同时将 slotDuration 设置为 24,而不是 slotLabelInterval(它不起作用)
- set slotLabelFormat: { weekday: 'short', month: 'short' } (没用,总是显示时隙标签)
问题:如何用V5做出和第一张截图一样的效果