[Tex/LaTex] Rotate Gantt Chart Figure

pgfganttrotating

This is a follow up question to:

Gantt chart package

any ideas on how to rotate the gantt chart to make it appear sidewards? (i.e. rotate it 90 degrees?)

Best Answer

Use the landscape-option to turn your page, like this:

 \usepackage{lscape}
 \begin{document}
    \begin{landscape}
    ...your Gantt-Chart here
    \end{landscape}
 \end{document}

To rotate it clockwise, you need to use rotating package:

  \usepackage{rotating}
  \begin{document}
     \begin{rotate}{270}
        ...your Gantt-Chart here
     \end{rotate}
  \end{document}