blob: 3bcb7ab2eb638c34675c42bb9163ca51829d9ce3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
\usemodule[gantt]
%\usemodule[gantt][alternative=mp]
%\usemodule[gantt][alternative=tikz]
\setuppagenumbering[location=]
\starttext
\startgantt{10}{12}
\startganttitle
\numtitle{1}{1}{12}{1}
\stopganttitle
\ganttbar{a task}{0}{2}
\ganttbarcon{a consecutive task}{2}{4}
\ganttbarcon{another consecutive task}{8}{2}
\ganttmilestone[color=cyan]{Milestone with color!}{4}
\ganttbar{another task}{2}{2}
\ganttbar[color=cyan]{another coloured task}{4}{4}
\ganttbar{another task}{4}{2}
\ganttcon{4}{5}{4}{7}
\ganttmilestonecon{A connected Milestone}{7}
\ganttbarcon{another consecutive task}{8}{2}
\stopgantt
\stoptext
|