[Tex/LaTex] Reduce vertical space between bars in pgfgantt

diagramspgfgantttikz-pgf

Is it possible to reduce the default vertical space between bars in pgfgantt? The manual specifies "last line height" but there appears to be no "line height" option.

\documentclass[a4paper,11pt]{article}
\usepackage{pgfgantt}
\begin{document}
\section{}


\begin{tikzpicture}[x=3cm, y=0.75cm]  
\begin{ganttchart}[bar={fill=red!50}]{5}
\gantttitle{2012--2017}{5} \\
\gantttitlelist{1,...,5}{1} \\
\ganttbar{PhD1}{1}{3.5} \\
\ganttbar{PhD2}{2.5}{5} \\
\end{ganttchart}
\end{tikzpicture}
\end{document}

Best Answer

I just submitted pgfgantt v2.0 to CTAN. Among several other new features, this version introduces the three keys x unit, y unit title and y unit chart. These keys should allow you to use different line heights in the title and the remainder of the chart.