Hi Sergio,
Greetings from Syncfusion support.
Based on your requirement we have prepared the below sample by using the navigating event of Schedule like the below code and the same made in the sample.
[app.component.html]
<ejs-schedule #scheduleObj width='100%' height='650px' [currentView]='currentView' (navigating)="onNavigating($event)">
<e-header-rows>
<e-header-row option='Date'></e-header-row>
<e-header-row option='Hour'></e-header-row>
</e-header-rows>
<e-views>
<e-view option='TimelineDay'></e-view>
<e-view option='TimelineWeek'></e-view>
<e-view option='TimelineMonth'></e-view>
</e-views>
</ejs-schedule>
[app.component.ts]
public onNavigating(args: NavigatingEventArgs) {
let dayView: boolean = args.action === 'view' ? args.currentView === 'TimelineDay' : this.scheduleObj.currentView === 'TimelineDay';
this.scheduleObj.headerRows = dayView ? [{ option: 'Date' }] : [{ option: 'Date' }, { option: 'Hour' }];
}
Kindly try the above sample and let us know for further assistance on this.
Regards,
Ravikumar Venkatesan