timeline indicator not working in react scheduler

Hi,

Please check this issue,Timeline indicator not working,tried scrolltotime also its showing its not a function

used this versions 

    "@syncfusion/ej2-base": "^28.2.5",
    "@syncfusion/ej2-buttons": "^28.1.37",
    "@syncfusion/ej2-documenteditor": "^28.2.5",
    "@syncfusion/ej2-icons": "^28.1.33",
    "@syncfusion/ej2-lists": "^28.1.37",
    "@syncfusion/ej2-navigations": "^28.2.5",
    "@syncfusion/ej2-pivotview": "^28.2.4",
    "@syncfusion/ej2-react-base": "^28.1.38",
    "@syncfusion/ej2-react-buttons": "^28.1.37",
    "@syncfusion/ej2-react-calendars": "^28.1.37",
    "@syncfusion/ej2-react-navigations": "^28.2.5",
    "@syncfusion/ej2-react-popups": "^28.1.38",
    "@syncfusion/ej2-react-schedule": "^28.2.5",
    "@syncfusion/ej2-schedule": "^28.2.5",
    "@syncfusion/ej2-splitbuttons": "^28.1.37",


   <ScheduleComponent
              cssClass="timeline-resource"
              ref={scheduleRef}
              width="100%"
              height="650px"
              selectedDate={selectedDate}
              navigating={onDateChange}
              actionBegin={onActionBegin}
              dragStart={onDragStart}
              dragStop={onDragStop}
              actionComplete={onActionComplete}
              popupOpen={onPopupOpen}
              eventRendered={onEventRendered}
              renderCell={onRenderCell}
              resourceHeaderTemplate={resourceHeaderTemplate}
              startHour="00:00"
              dataBound={onDataBound}
              allowDragAndDrop={true}
              workHours={{
                highlight: true,
                start: "00:00",
                end: "24:00",
              }}
              timeScale={{ enable:true,interval: 15, slotCount: 1 }}
              // You can provide your own toolbar items or the default set
              toolbar={["Search", "Day", "Week", "Month", "Agenda"]}
              group={{
                enableCompactView: false,
                resources: ["BookAppointment"],
              }}
              eventSettings={eventSettings}
                 
            >
              <ResourcesDirective>
                <ResourceDirective
                  field="DoctorId"
                  title="Doctor Name"
                  name="BookAppointment"
                  dataSource={doctors}
                  textField="text"
                  idField="id"
                  colorField="color"
                />
              </ResourcesDirective>
              <ViewsDirective>
                <ViewDirective option="TimelineDay" />
                {/* <ViewDirective option="TimelineWeek" /> */}
              </ViewsDirective>
              <Inject services={[TimelineViews, Resize, DragAndDrop]} />
            </ScheduleComponent>

1 Reply

SR Swathi Ravi Syncfusion Team February 18, 2025 10:55 AM UTC

Hi Shady Selim,

Thank you for reaching out to us!
We have already logged this issue as a bug, and it has been fixed in our weekly release(v28.2.6). Upgrade to the latest version to resolve the issue.

Regards,
Swathi

Loader.
Up arrow icon