How to change Time Format on Week View Template

Is it possible to change the hour_scale on the Week View Template to %g:%i %A?

Hello,

You can make it by date_to_str method.

scheduler.templates.hour_scale = function(date){ var formatFunc = scheduler.date.date_to_str("%g:%i %A"); return formatFunc(date); };

Excellent, perfect, awesome! Exactly what I needed.

Thanks @Polina.