¿Cómo dividir un diagrama de Gantt muy largo en líneas consecutivas?

¿Cómo dividir un diagrama de Gantt muy largo en líneas consecutivas?

Necesito un diagrama de Gantt para un proyecto en un largo período de tiempo, como más de un año.

Considera lo siguiente 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}

¿Hay alguna manera de dividir el diagrama de Gannt en muchas líneas consecutivas para cubrir todo el período objetivo?

información relacionada