Export to PDF PHP version: Show the end hour on month view

Hi all,
I need to show the end hour when a month view is printed, as can you see in the picture, it is only showing the start our 9:00 but don’t the end hour 11:00.
Thanks in advance.

any suggestions?

PDF export contains the same data, as the html view of the scheduler
So you need to adjuste event_bar_date template
docs.dhtmlx.com/scheduler/month_ … lates.html

You can change it to show both start and end dates. In such case pdf export will show both dates as well.

Yes. This is the solution, thanks you!

scheduler.templates.event_bar_date = function(start,end,ev){
var s = scheduler.templates.event_date(start);
var e = scheduler.templates.event_date(end);
return s+" - “+e+” ";
};