I want to show only working hours in the daily agenda from 8:30 to 17:00, as shown below:
You ask how to hide hours outside of working hours? If so, use the minTime and maxTime parameters:
http://fullcalendar.io/docs/agenda/minTime/
http://fullcalendar.io/docs/agenda/maxTime/
for example, for a calendar from 9:00 to 17:00:
$(document).ready(function() { $('#calendar').fullCalendar({ ... minTime: "09:00:00", maxTime: "17:00:00", ... }); });
Adding to the minTime and maxTime settings as @scottysmalls, adding height: 'auto', will help to remove the empty area at the bottom.
height: 'auto',
Source: https://habr.com/ru/post/1240096/More articles:How to download laravel 5 service providers from the provider package itself? - phpDelay in starting a thread due to system.out.println - javaCurrent status for Android TV apps? (What to use instead of the notification bar on Android) - androiddocker Work for docker.service failed because the control process exited with an error code - linuxIs GZIP compression always 1.00x on iOS Safari? - safariDjango / sqlite3 "OperationalError: no such table" for threaded operations - pythonLimit the delimiter to just a few tabs when using pandas read_csv - pythonWordpress gets caption of attached image - phpHow to load a specific Hive partition in a DataFrame Spark 1.6? - hiveHow cache reckless quick look? - sortingAll Articles