You can use a separator to display the current time indicator in the Angular Scheduler component:
config: DayPilot.SchedulerConfig = {
separators: [
{
location: DayPilot.Date.now(),
color: "red"
}
],
// ...
}
You can also show it dynamically:
const separators = [
{
location: DayPilot.Date.now(),
color: "red"
}
];
this.scheduler.update({separators});