TimeLineView: Daily Timeline View

We are evaluating the pro version of the Scheduler. The TimeLineView in “day” mode seems to generally meet our requirement. How do we control the date format down the left hand side in day mode? It is currently in the format of “5 Sept 2011”. We’d like to show “Monday Sept 5, 2011”. Possible? Thanks, Craig.

I’ve tried:
sched.Templates.timeline_scale_date = “{date:date(%d.%m.%Y)}”;

But that seems to control the time across the top of the day view.

Anyone have any ideas? Thanks in advance.

Hello,
try “timeline_scale_label” template:
scheduler.Templates.timeline_scale_label = “{section_label:date(%l %M %d, %Y)}”;

You can also control templates via client-side API, it would provide you more flexibility
docs.dhtmlx.com/scheduler/api__s … plate.html

Perfect. Thank you!