Reputation: 341
How can i set the height of the Kendo scheduler events and time slots ?
I'm tried :
.k-scheduler-dayview .k-scheduler-table td,
.k-scheduler-weekview .k-scheduler-table td,
.k-scheduler-table td{
height: 50px !important;
}
or
<kendo-scheduler-week-view eventHeight="50px">
</kendo-scheduler-week-view>
or
<kendo-scheduler eventHeight="50px">
//...some code
</kendo-scheduler>
..but it's still not working.
I'm using Angular 8, not jQuery
Thank you in advance !
Upvotes: 0
Views: 1095
Reputation: 1272
You can use the eventClass property of the SchedulerComponent.
See this stackblitz
Upvotes: 0