I am using the ASP.NET MVC Scheduler to show one day's worth of scheduled activities where each column represents a block of time of 15 minutes. Here is my configuration:
@Html.DayPilotScheduler("dps", new DayPilotSchedulerConfig
{
...
StartDate = ...,
Days = 1,
CellDuration = 15,
CellGroupBy = GroupBy.Hour,
TimeFormat = DayPilot.Web.Mvc.Enums.TimeFormat.Clock12Hours,
})
Along the very top I see the hours of the day, from 0 to 23, and beneath that there are 15 minute increments: 00, 15, 30, then 45.
In the topmost bar, however, I'd like to show the time as 12 AM, 1 AM, 2AM, ... 12 PM, 1 PM, ... 11 PM, rather than 0-23.
How do I go about doing this?
Thanks!