Skip to content

Instantly share code, notes, and snippets.

@igponce
Created December 19, 2019 15:33
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igponce/0b7372621c8df7d503df80760ec1eceb to your computer and use it in GitHub Desktop.
Save igponce/0b7372621c8df7d503df80760ec1eceb to your computer and use it in GitHub Desktop.
Kanban (trello-like) board in PlantUML
@startuml Kanban Board
caption "Kanban board for 2019.12.19"
rectangle stack_TODO as "To-do" {
node Task3 [
** Task Name **
====
This is the first task of the board.
Not yet assigned
]
node Task4 [
** Task Name **
====
This is the 4th task of the board.
Assigned to **DEVELOPER1**
]
node Task5 [
Task Name
====
Another task of the board.
Assigned to someone
]
Task3 -[hidden]- Task4
Task4 -[hidden]- Task5
}
rectangle stack_DOING as "Doing" {
node Task2 [
** Task#2 **
====
Another task of the board.
Assigned to **Competent_developer**
]
}
rectangle stack_DONE as "Done" {
node Task1 [
This is the first task of the board.
Finished by **Another developer **
]
}
stack_TODO -Right[hidden]- stack_DOING
stack_DOING -Right[hidden]- stack_DONE
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment