I am using the FullCalendar plugin, in which I show the attendance records of the users but only faults (Red) and delays (Yellow) , I show only the data per month:
In what I have doubts is how to fill the whole picture with a single color, as you see it shows me only one part, I do not have a date / time end of the event only the day I arrived late or missed.
I tried:
$calendar.fullCalendar({
defaultTimedEventDuration:"24:00", // Tiempo por default que dura el evento 24 hrs
allDaySlot:true,
forceEventDuration:true
});
And the data with which I fill the Calendar are as follows:
var events = {
title: "",
start: ISODate("2017-11-15T00:00:00.122Z"),
allDay: true,
color: "#e1f40c",
};
);
callback(events);