FullCalendar:borderColor/backgroundColor 不适用于月视图

问题描述 投票:0回答:1

在全日历中, 我使用 eventDataTransform 来设置 borderColor 和 backgroundColor。 对于月视图事件的 borderColor 和 backgroundColor 不生效。

我希望为月视图采取 borderColor/backgroundColor 效果。

请针对该问题提出一些解决方案。

javascript events vuejs3 fullcalendar fullcalendar-5
1个回答
0
投票

如果我们使用事件的 display 属性来“block”, 然后它为所有视图(包括月视图)设置事件的 backgroundColorborderColor

示例:

events = [{
    title: 'Timed Event',
    start: '2020-06-23T16:00:00+00:00',
    display: 'block',
    borderColor: 'red',
    backgroundColor: 'green'
}]
© www.soinside.com 2019 - 2024. All rights reserved.