Pgfgantt 月のラベルを削除

Pgfgantt 月のラベルを削除

私のプロジェクトの期間は 6 年で、縦向き形式で A4 ページの幅でも読みやすいガント チャートを実現したいと考えています。

ここに画像の説明を入力してください

ガント チャートの月行のラベル (数字) を削除し、pgfganttチャート内の表の空のセルだけを残したいです。

\documentclass{article}
\RequirePackage{pgfgantt} 
      
\begin{document}
   
\begin{ganttchart}[time slot format=isodate-yearmonth, 
    vgrid={dotted,draw=none,draw=none}, %hgrid=true, 
    x unit=0.22cm,          % NOTE: width for a single month
    y unit chart = 0.6cm, bar height=0.6,
    y unit title = 0.5cm, title height=1,
    include title in canvas=false,
    time slot unit=month
    ]{2024-09}{2030-09}  %project duration

    % temporal marks
    \gantttitlecalendar[title/.style={fill=black!30,draw=black}]{year} \\
    \gantttitlecalendar[title/.style={fill=black!20,draw=black}]{month} \\
\end{ganttchart}

    
\end{document}

関連情報