Questions Tagged timeheaders

Invalid cellGroupBy value

Answered: I was able to fix it using the online configurator as a guide, here is the modified js used: dp.scale = "CellDuration"; dp.cellDuration = 15; dp.timeHeaders = [ {groupBy: "Day", format: "dddd d MMMM ...

Display custom string in time headers

Answered: You can customize the header HTML using onBeforeTimeHeaderRender event handler: dp.onBeforeTimeHeaderRender = function(args) { if (args.header.level === 1) { args.header.html = args.header.start.toSt...