I am trying to create a timeline that loads all data and events from a datasource. I have been using a dev extreme component for this purpose, but unfortunately, the events are not displaying on the calendar. Can anyone offer any insights into what I might be doing wrong?
If anyone could provide assistance, it would be greatly appreciated.
Thank you
Library
html
<dx-scheduler
timeZone="America/Los_Angeles"
[dataSource]="myDatasource"
[views]='["timelineDay", "timelineWeek", "timelineWorkWeek", "timelineMonth"]'
currentView="timelineMonth"
[firstDayOfWeek]="0"
[startDayHour]="8"
[endDayHour]="20"
[cellDuration]="60"
[groups]="['idUser']"
[currentDate]="currentDate"
[height]="580">
<dxi-resource
fieldExpr="idUser"
[allowMultiple]="true"
[dataSource]="myDatasource"
label="Owner"
[useColorAsDefault]="true"
></dxi-resource>
</dx-scheduler>