month_scale_date

specifies the date format of the X-Axis of the view

dateDatethe date which needs formatting

Example

const formatMonthScale = scheduler.date.date_to_str("%l");
 
scheduler.templates.month_scale_date = function(date){
    return formatMonthScale(date);
};

Applicable views:Month View
See also
Back to top