Hello and thank you for taking the time to look at my question.
I have a \pgfgantt chart that I need to split into a couple as it's too long (I'm using the latest version of \pgfgantt installed yesterday). I'd like to align the charts by their border; I thought maybe inserting 'dummy text' would work but I don't know how to do that. Do you have any suggestions? And if anything jumps out at you in the code (apart from August hanging out on its lonesome for a day) please let me know, I'm still very much learning.
Thanks again.
\documentclass[12pt, a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{shapes}
\usepackage{pgfgantt}
\usepackage{lscape}
\begin{document}
\begin{landscape}
\centering
%%%%%%%%%%%%%%%% Gantt 1 %%%%%%%%%%%%%%%
\begin{ganttchart}%
[time slot format = {isodate},% Specify the date format (yyyy-mm-dd)
x unit = 2.1 mm,
y unit title = 10 mm,
y unit chart = 4 mm
]%
{2021-03-01}% Specify start date
{2021-05-16} % Specify end date 1
\gantttitlecalendar{month=name, week}%\\
\ganttnewline
\ganttbar{Something quite long that's going on}{2021-03-08}{2021-03-14}\\
\ganttnewline
\ganttmilestone{Do another relatively wordy thing}{2021-03-08}\\
\end{ganttchart}
\vfill
%%%%%%%%%%%%%%%% Gantt 2 %%%%%%%%%%%%%%%
\begin{ganttchart}%
[time slot format = {isodate},% Specify the date format (yyyy-mm-dd)
x unit = 2.1 mm,
y unit title = 10 mm,
y unit chart = 4 mm
]%
{2021-05-17}% Specify start date
% {2021-05-16} % Specify end date 1
{2021-08-01} % End date 2
% {2021-11-26}% Specify end date
\gantttitlecalendar{month=name, week}%\\
\ganttnewline
\ganttbar{Thing 3} {2021-05-17}{2021-07-11}
\end{ganttchart}
\end{landscape}
\end{document}
