Quan Truong
Quan Truong

Reputation: 341

Angular : Kendo Scheduler time slots and events css

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

Answers (1)

Ludwig
Ludwig

Reputation: 1272

You can use the eventClass property of the SchedulerComponent.

See this stackblitz

Upvotes: 0

Related Questions