FullCalendar - 如何删除小时数并且只有工作日?

FullCalendar - How to remove the Hours and only have the Weekdays?

我一直在研究 FullCalendar with the Scheduler 插件,但我不知道如何从日历中删除时间。我只对工作日的名称感兴趣,是否可以这样做?

Here is how the Calendar looks

我认为您只需要让一个时段跨越一整天。

例如

slotDuration: { days:1 }

有关文档,请参阅 https://fullcalendar.io/docs/slotDuration

我只需要像这样给它一个 24 小时的持续时间:slotDuration: '24:00:00'。我还更改了 minTime: "00:00:00"maxTime: "24:00:00" 的一些值以确保它有效,但它似乎不相关。

    minTime: "00:00:00",
    maxTime: "24:00:00",
    slotDuration: '24:00:00', 
    nowIndicator: false,