Fullcalendar - 无法使用eventColor为eventSources着色

时间:2015-11-20 16:27:20

标签: fullcalendar

我尝试使用eventColor以不同方式为两个EventSource着色,但它不起作用。

jQuery("#calendar").fullCalendar({ 
    eventSources: [
        {
            events: events1,
            eventColor: '#f00'
        },
        {
            events: events2
        }
    ]
});

event1应该有一个红色背景,但它不起作用。

http://jsfiddle.net/hhynzokh/

1 个答案:

答案 0 :(得分:1)

使用颜色 eventColor

http://jsfiddle.net/hhynzokh/1/

jQuery("#calendar").fullCalendar({ 
    eventSources: [
        {
            events: events1,
            color: '#f00'
        },
        {
            events: events2
        }
    ]
});