Here is how I did it to give a background color for each event.
JS FIDDLE DEMO
events: [ { title: 'Test1', start: new Date(2014, 2, 28, 12, 0), end: new Date(2014, 2, 30, 12, 0), backgroundColor: '#80ACED', }, { title: 'Test2', start: new Date(2014, 2, 14, 3, 55), end: new Date(2014, 2, 21, 12, 0), backgroundColor: '#80ACED', }, { title: 'Test3', start: new Date(2014, 2, 2, 12, 0), end: new Date(2014, 2, 2, 12, 0), backgroundColor: '#E82525', } ]
Hope this helps. See http://arshaw.com/fullcalendar/docs/event_data/Event_Object/
Smith kalwal
source share