ycomb/xcomb
有没有一种简单的方法可以控制中提出的命令中的笔画宽度\厚度pgfplots
?还是我应该深入研究源代码来澄清?
答案1
线宽是每个图的属性。因此,您只需添加相应的选项即可。以下是来自pgf图手动的。
\documentclass{minimal}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot+[xcomb,line width=5pt] coordinates {%
(4,0) (1,1) (2,2) (5,3) (6,4) (1,5)
};
\end{axis}
\end{tikzpicture}
\end{document}