如何將很長的甘特圖分成連續的線?

如何將很長的甘特圖分成連續的線?

我需要一個長期計畫(例如一年多)的甘特圖。

考慮以下MWE

\documentclass[12pt]{article}
\usepackage[margin=1.0in]{geometry}
\usepackage{pgfgantt}
\usepackage{pdflscape}
\usepackage{capt-of} %caption outside floats
\begin{document}
    \begin{landscape}
        \captionof{figure}{My Timeline}
        \begin{tikzpicture}
        \begin{ganttchart}[%%%
        hgrid,
        vgrid,
        x unit=4mm,
        time slot format=isodate,
        title/.append style={shape=rectangle, fill=black!10},
        title height=1,
        bar/.append style={fill=green!70},
        bar height=.6,
        bar label font=\normalsize\color{black!90},
        group top shift=.6,
        group height=.3,
        group peaks height=.2,
        ]{2017-04-01}{2018-08-01}
        14
        \gantttitlecalendar{year, month, day} \\
        \ganttbar{Task}{2018-05-15}{2018-05-25}                    
        \end{ganttchart}
        \end{tikzpicture}
    \end{landscape}
\end{document}

有沒有辦法將甘特圖分成許多連續的線來涵蓋所有目標時間段?

相關內容