パスの輪郭を白で描くには、通常、パスを大きく描いて白で塗りつぶし、その上に黒で塗りつぶした元のパスをコピーします。これは、パスを背景からより明確に区別するためです。
しかし、もちろんこれは pgfplots では機能しません。\addplot
グラフのコピーを白色で作成し、line width=
意図したグラフよりも大きい値にすると、元のグラフがシフトされ、各 (黒) バーの白いアウトラインが重なり合わなくなります。
質問1: pgfplots で、棒グラフの各バーのアウトラインを、黒いアウトライン (黒いまま) に加えて白で表示するにはどうすればよいですか?
(質問2(コメントで既に回答済み): 最初のバーと Y 軸の間の水平距離はどのようにスケーリングされますか?)
たとえば、これをすべて次のように実行するにはどうすればよいでしょうか。
\documentclass{standalone}\usepackage{pgfplots,tikz}
\begin{document}\begin{tikzpicture}\pgfplotsset{%
every axis legend/.append style={at={(0.9,0.7)},anchor=south east}}%
\draw[draw=none,fill=black!20]rectangle(13.4,13.4);
\begin{axis}[title={},grid=major,scaled y ticks=false,
bar width=12.34pt,line width=3.2pt,%
enlarge x limits={true,abs value=0.64},
width=428pt,x tick style={line width=2.4pt,draw=black},%
height=428pt,y tick style={line width=2.4pt,draw=black},%
ybar=8pt,%BAR SEPARATION
yticklabel style={/pgf/number format/fixed,/pgf/number format/precision=3},%
xtick=\empty,xtick={1,...,3},xticklabels={%
\textbf{A},%
\textbf{B},%
\textbf{C},%
},legend style={inner xsep=8pt,inner ysep=4pt,line width=2pt,draw=none,minimum height=22pt,column sep=4pt},% remove this to show the legend border
legend image code/.code={\draw[#1](-6pt,-6pt)rectangle(6pt,6pt);}%
]%
\addplot[fill=blue60!,draw=black,
point meta=y,
every node near coord/.style={inner ysep=8pt},
error bars/.cd,y dir=both,
y explicit]table[y error=error]{%
x y error label
1 19.9 2 1
2 38.6 3 2
3 35.2 3 3
};%LEGEND
\legend{\makebox[64pt]{\raisebox{-2pt}{MyLabelGoesHereYes}},}
\end{axis}\end{tikzpicture}\end{document}
編集: おそらく装飾を介して行うことができますか?
答え1
白いアウトラインを取得するには、オプションpreaction={draw=white, line width=5pt}
を追加できます。\addplot [...]
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
ybar,
axis background/.style={fill=gray},
axis on top
]
\addplot [fill=yellow, draw=black, very thick, preaction={draw=white, line width=5pt}] table {%
x y
1 19.9
2 38.6
3 35.2
};
\end{axis}
\end{tikzpicture}
\end{document}