Remove Time from scheduler header in month view

How can i make the red line and the time dont appear on my scheduler header

 


1 Reply 1 reply marked as answer

SR Swathi Ravi Syncfusion Team November 21, 2024 07:23 AM UTC

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

 

Regards,

Swathi


Marked as answer
Loader.
Up arrow icon