Hi Arturo Martinez,
Thank you for reaching out.
To hide the current time indicator in the Angular Scheduler, you can set the showTimeIndicator property to false. Here is a code snippet demonstrating how to achieve this:
import { ScheduleComponent, EventSettingsModel } from '@syncfusion/ej2-angular-schedule'; @Component({ selector: 'app-root', template: `<ejs-schedule width='100%' height='550px' [eventSettings]="eventSettings" [showTimeIndicator]="showTimeIndicator"></ejs-schedule>` }) export class AppComponent { public showTimeIndicator: boolean = false; public eventSettings: EventSettingsModel = { dataSource: scheduleData }; } |
UG: https://ej2.syncfusion.com/angular/documentation/schedule/timescale#highlighting-current-date-and-time