i'm looking for a way to resize my ganttchart. if the project timefrmae is too long, i cannot see the end of it. do you knwo if we have a way to do so ?
here is my code:
Code: Select all
\documentclass{article}
\usepackage{pgfgantt}
\usepackage{pdflscape}
\begin{document}
\begin{landscape}
\begin{ganttchart}[
hgrid,
vgrid,
time slot format=isodate
]{2016-08-18}{2016-10-16}
\gantttitlecalendar{month=name,week=34} \\
\ganttgroup{Initial install}{2016-08-18}{2016-09-09}\\
\ganttbar{Decom toto}{2016-08-18}{2016-08-24}\\
\ganttbar{Reinstall toto}{2016-08-24}{2016-09-02}\\
\ganttbar{Add toto to the MoM}{2016-09-05}{2016-09-05}\\
\ganttbar{Test tape scripts}{2016-09-06}{2016-09-09}\\
\ganttmilestone{New HW available}{2016-09-09}
\end{ganttchart}
\end{landscape}
\end{document}