如何控制误差线标记的宽度?

如何控制误差线标记的宽度?

如何控制误差线标记的水平大小?我想修改它以表示箱子大小,即延伸它们直到相邻的误差线“接触”彼此。

我可以width用 来控制标记的error bars/error mark options={rotate=90, line width=Xpt};但是没有height等效的东西可以做我想做的事情。

\documentclass{article}

\usepackage{pgfplots}

\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot+[only marks,
  error bars/.cd,
    y dir=both,
    y explicit,
    error bar style={line width=2pt},
    error mark options={
      rotate=90,
      mark size=8pt,
      line width=2pt
    }
]
coordinates {
(0,1) +- (0,0.35665)
(1,1.5) +- (0,-0.35048)
(2,0) +- (0,0.150255)
};
\end{axis}
\end{tikzpicture}
\end{document}

相关内容