Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

28 lines
1.1KB

  1. \documentclass{standalone}
  2. \usepackage{tikz,pgfplots}
  3. \usepackage{siltex}
  4. \usetikzlibrary{arrows.meta,positioning}
  5. \pgfplotsset{compat=1.17}
  6. \begin{document}
  7. \begin{tikzpicture}
  8. \begin{axis}[
  9. xbar=-3mm,
  10. bar width=4mm,
  11. xmin=0,
  12. xmax=21,
  13. width=85mm,
  14. height=75mm,
  15. enlarge y limits=0.15,
  16. legend style={at={(0.98,0.95)},
  17. anchor=north east,legend columns=-1},
  18. xlabel={Days},
  19. symbolic y coords={Software Development,Development Cycle 2,Development Cycle 1,Test Protocol,Feature Definition,Initial Design,Specifications,Problem Description},
  20. ytick=data,
  21. ]
  22. \addplot[draw=red,fill=red!40] coordinates {(2,Problem Description) (3,Specifications) (3.5,Initial Design) (13,Feature Definition) (0.5,Test Protocol) (3,Development Cycle 1) (17,Development Cycle 2) (20,Software Development)};
  23. \addplot[draw=blue,fill=blue!40] coordinates {(2,Problem Description) (3,Specifications) (5,Initial Design) (6,Feature Definition) (1,Test Protocol) (3,Development Cycle 1) (13,Development Cycle 2)};
  24. \legend{Time Spend,Time Planned};
  25. \end{axis}
  26. \end{tikzpicture}
  27. \end{document}