Agent-readable demo data

Title
JavaScript Kanban Swimlanes | DayPilot Pro for JavaScript Demo
Tree
DayPilot JavaScript Demo
Catalog root
Default
Description
Read more about Kanban swim lanes [doc.daypilot.org].

Inline demo script 1

var dp = new DayPilot.Kanban("dp");
        dp.cellMarginBottom = 15;
        dp.columns.list = [
            {name: "Analysis", id: "1", barColor: "#f9ba25"},
            {name: "Draft", id: "2"},
            {name: "Testing", id: "3"}
        ];
        dp.cards.list = [
            {id: "1", "name": "Task 1", column: "1", swimlane: "A", text: "This is a description of task #1."},
            {
                id: "2",
                "name": "Task 2",
                column: "1",
                swimlane: "B",
                text: "This is a description of task #2.",
                barColor: "#6AA84F"
            },
            {
                id: "3",
                "name": "Task 3",
                column: "1",
                swimlane: "B",
                text: "This is a description of task #3.",
                barColor: "#F6B26B"
            }
        ];
        dp.swimlanes.list = [
            {name: "Swimlane A", id: "A"},
            {name: "Swimlane B", id: "B"}
        ];

        dp.init();