I am using the fullcalendar plugin for my angular application. I am using eventSource to get my events. I have title, start, end and breakCount keys in my JSON, like this:
{
"title": "06DefaultProgram2",
"start": "2016-02-06 13:30:00",
"end": "2016-02-06 18:00:00",
"breakCount": 2
}
Full calendar takes title, start and end but I also want to display the breakCount on my event cell. How can I achieve this?