Hi Carla,
The start time and end time fields of
the appointment are mandatory, and they need to be present at the root of the
appointment. Add the startDate and endDate fields in the interface, like
the below code, to bind the appointment fields to the scheduler.
Sample: https://stackblitz.com/edit/angular-pmxw3s?file=app.component.ts
Export interface Appointment {
title: string;
startDate: Date;
endDate: Date;
}
Public eventSettings: EventSettingsModel = { dataSource: this.data,
fields: {
subject: {name: 'title' },
startTime: {name: 'startDate'},
endTime: {name: 'endDate'}
}
};
Output:

Regards,
Ruksar Moosa Sait