Reputation: 761
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.
Upvotes: 1
Views: 1073
Reputation: 761
I have found the answer. It is actually very simple. Just use the following code in css:
.k-scheduler .k-today {
background-color: lightgreen;
}
Upvotes: 1