Issue 909: Hi all, I need events multicolored like this photo.
Status:  Done
Owner: ----
Closed:  Apr 2011
Reported by claudio...@gmail.com, Apr 14, 2011
Please I need multicolored events like attach file, I see the code I think is the possible, but I don't found no sample.
I download the last source, I see this code but, need colored Teste1 green and Test2 red.
Please help-me.


		$('#calendar').fullCalendar({
			editable: true,
			events: [
				{
					title: 'Teste1',
					start: new Date(y, m, d, 10, 30),
					allDay: false
				},
				{
					title: 'Teste2',
					start: new Date(y, m, d, 11, 40),
					allDay: false
				}
			], eventColor: '#378006'
		});
	});

Thanks in advanced,
Claudio.
Apr 15, 2011
Project Member #1 althaus.it
You missed to attach a file. ;)

You have to add a attribute "color" to each single event as stated in the doc [1]:

---snip---
title: 'Teste1',
start: new Date(y, m, d, 10, 30),
allDay: false,
color: '#FF0000'
---snip---

[1] http://arshaw.com/fullcalendar/docs/event_data/Event_Object/
Status: Done
Apr 15, 2011
Project Member #2 althaus.it
 Issue 910  has been merged into this issue.
Apr 15, 2011
Project Member #3 althaus.it
Found the file. Please update your existing report and don't create new ones each time. Nevertheless my answer stays untouched. :)