Hi,
I follow the zoom tutorial https://code.daypilot.org/12302/angular-scheduler-zoom
However how to display the zoom timeheader for week example Week 1 Week 2 as now only show weeknumber only
{
name: 'Week',
properties: {
scale: 'CellDuration',
cellDuration: 720,
cellWidth: 35,
weekStarts: 1,
timeHeaders: [{groupBy: 'Month'}, {groupBy: 'Week' , format : 'Week ?'}, {groupBy: 'Day'}, {groupBy: 'Cell', format: 'tt'}],
startDate: function(args) { return args.date.firstDayOfWeek().toDateLocal(); },
days: function(args) { return args.date.daysInMonth(); },
}
},