当标签位于图表外部(左侧)时,如何在甘特图中显示两行标签?当标签与条形图内联时,此问题已得到解决(甘特图中的两行标签),但当标签位于图表左侧时,此方法不起作用。
感谢您的帮助。
答案1
你在寻找这样的东西吗:
\documentclass{standalone}
\usepackage{pgfgantt}
\begin{document}
\begin{ganttchart}[
bar label node/.append style=%
{align=left}
]{1}{12}
\gantttitlelist{1,...,12}{1} \\
\ganttbar[bar height=1]{two\ganttalignnewline lines}{1}{2} \\
\ganttbar[bar height=1]{two\\ lines}{1}{2} \\
\end{ganttchart}
\end{document}