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

1k Views Asked by At

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.

1

There are 1 best solutions below

0
On BEST ANSWER

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

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