I have followed the sample in the demo on how to implement the timeline component.
I am getting the following error: Uncaught TypeError: Cannot read properties of undefined (reading 'left')
at x (kendo.all.js:321370:19)
at init._initHorizontal (kendo.all.js:321370:19)
at init.refresh (kendo.all.js:321370:19)
at init.trigger (kendo.all.js:321370:19)
at init._process (kendo.all.js:321370:19)
at init.success (kendo.all.js:321370:19)
at success (kendo.all.js:321370:19)
at n.success (kendo.all.js:321370:19)
at i (jquery.min.js:2:27466)
at Object.fireWith [as resolveWith] (jquery.min.js:2:28230)
How can I resolve this ?
Here is the control in the cshtml page
@(Html.Kendo().Timeline<RequisitionModel>()
.Name("reqTimeline")
.DataDateField("EventDate")
.DataDescriptionField("Description")
.DataSubtitleField("Subtitle")
.DataTitleField("Title").CollapsibleEvents()
.Orientation(TimelineOrientation.Horizontal)
.DataImagesAltField("AltField")
.DataImagesField("Images")
.DataActionsField("Actions")
.DataSource(dt => dt.Read("GetRequisitionEvents", "Recruiting"))
)
</div>