DayPilot.Kanban.swimlanes.list

Array that holds the swimlane data. Optional - if not specified swimlanes will not be used. Item structure:

  • id (string, integer)
  • name (string)
  • collapsed (boolean)

Example

dp.swimlanes.list = [
  {name: "Swimlane A", id: "A"},
  {name: "Swimlane B", id: "B", collapsed: true}
];