This is my angular code for scheduler config:
$scope.schedulerConfig = {
allowEventOverlap: false,
visible: true,
scale: "Minute",
cellWidthSpec: "Auto",
days: 1,//new DayPilot.Date().daysInMonth(),
startDate: new DayPilot.Date().firstDayOfMonth(),
// theme: "blueongrey", https://themes.daypilot.org/scheduler/theme/c5movh
timeHeaders: [
{ groupBy: "Day", format: "dd MMM yyyy" },
{ groupBy: "Hour", format: "HH" }
],
rowHeaderColumns:[
{title: "Asset", width: 80},
],
onTimeRangeSelected: function(args) {
//Do stuff
},
};
Adding "cellBorderColor: "#666666", or any other property from http://api.daypilot.org/daypilot-scheduler-properties/ doesn't change anything.