Color cell in month view

Hello. I need colorize cell in month view depends on events in this day. Is there a proper way?

I found this function scheduler.templates.month_date_class (date, today), but there’s no events.

P.S. Sorry for my English.

Hi,
please check this example
docs.dhtmlx.com/scheduler/sample … oring.html

The template provides you a date of the cell, then you can retrieve all events that happens on that day using

var evs = scheduler.getEvents(date, scheduler.date.add(date, 1, "day"));

docs.dhtmlx.com/scheduler/api__s … vents.html