I can't seem to get the event template to display data from the event object, apart from the title. I'm trying to do this with custom properties that I've added to the events object and that does not work. But also, existing properties, such as description, also do not display.
Used the documentation from here:
https://www.telerik.com/kendo-angular-ui/components/scheduler/templates/#toc-all-day-events
So in the example below, description will not display.
Is this a feature or bug?
<div class="row col-md-12" *ngIf="fixingEvents.length > 0">
<kendo-scheduler
[kendoSchedulerBinding]="fixingEvents"
[selectedDate]="fixingFromDate"
>
<kendo-scheduler-week-view> </kendo-scheduler-week-view>
<ng-template kendoSchedulerAllDayEventTemplate let-event="event">
<p>{{ event.title }}</p>
<p>{{ event.description }}</p>
</ng-template>
</kendo-scheduler>
</div>