While looking at the docs, I've noticed that the scheduler component does not expose the slotLabelFormat from the fullcalendar control. What's the recommended workaround to set this property?
thanks,
Luis
After some digging (ie, looking at the source code found here, it turns out that the Schedule control exposes a property called schedule which allows you to access the jquery fullcalendar plugin. With this info, now it's just a matter of using the API:
ngAfterViewInit(){
//this._agenda is of type Schedule
this._agenda.schedule.fullCalendar("option", "slotLabelFormat", "HH:mm");
}