The Full Calendar Javascript plugin is very customization. Most options can be set/overridden by placing the settings in the Full Calendar Options in the Options tab for the visualization. All the options can be found here, but be warned, it is a bit of a slog to get through.
For example, the default weekday presentation on Month view is a short weekday name, Mon for Monday in English. You may wish your calendar to show the full weekday name. To do so you would place the following JSON encoded string:
Note however that the above will be overridden on mobile devices due to available space, so if you set the weekday to long it will only apply to larger devices, mobile will display as short.
For example, the default weekday presentation on Month view is a short weekday name, Mon for Monday in English. You may wish your calendar to show the full weekday name. To do so you would place the following JSON encoded string:
JSON:
{
"views": {
"dayGridMonth": {
"dayHeaderFormat": {
"weekday": "long"
}
}
}
}
Note however that the above will be overridden on mobile devices due to available space, so if you set the weekday to long it will only apply to larger devices, mobile will display as short.
Last edited: