I'm currently trying to configure my scheduler to display the cells in 15 minute intervals as seen in this example:
https://aspnet.daypilot.org/demo/Scheduler/ScaleMinutes.aspx
Although I can get it to display the headers as shown in the example, it will report the javascript error 'Invalid cellGroupBy value'.
This scheduler is fully functional when using the hourly scale settings.
Here is the code concerning the scale/header settings:
dp.scale = "Minute";
dp.timeHeaders =
[
{groupBy: "Day", format: "dddd d MMMM yyyy"},
{groupBy: "Hour"},
{groupBy: "Minute"}
];