我有以下直方图:
\begin{tikzpicture}
\begin{axis}[
x tick label style={
/pgf/number format/1000 sep=},
ylabel=Throughput,
enlargelimits=0.15,
legend style={at={(0.5,-0.15)},
anchor=north,legend columns=-1},
ybar,
bar width=7pt,
height=5 cm,
width=8cm,
xtick={16,24,32,48},
bar width=9pt,
nodes near coords
]
\addplot
coordinates {(16,0.78329073) (24,0.850329257)
(32,0.884738383) (48,0.908459915)};
\addplot
coordinates {(16,0.798544555) (24,0.8936027498627455)
(32,0.964614686) (48,0.985576186)};
\legend{Node, Chrome}
\end{axis}
\label{fig:tp-histogram}
\end{tikzpicture}
如您所见,条形的坐标为 16、24、32 和 48。绘制直方图时,pgfplots 在 32 和 48 之间留出一个空格(在 40 处)。是否可以将其折叠起来,使 32 和 48 像 16、24 和 32 一样接近?
谢谢