Answer posted by Dan Letecky [DayPilot]
1 years ago.

You can use the locale property to apply culture-specific settings (such as date format, first day of week….).

const calendar = new DayPilot.Calendar("calendar", {
  locale: "en-au",
  // ...
});
calendar.init();

For column headers, you can use the timeHeaderFormat property to set the desired pattern, or manually customize the text or HTML using the onBeforeHeaderRender event handler.

This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.