Search code examples
kendo-uikendo-scheduler

Kendo Scheduler change today's cell background color in month view


I need to change the background color of the current date cell in of a Kendo Scheduler in month view.

I have looked through their documentation, but have not found any related topic.


Solution

  • I have found the answer. It is actually very simple. Just use the following code in css:

    .k-scheduler .k-today {
        background-color: lightgreen;
    }