with the pgfplots package, I have a problem with thousands separator of the node. I would like to have no thousands separator. For the x tick labels, I found the solution (
xticklabel style={/pgf/number format/1000 sep=}
) but not for the node value (see code below).
Code: Select all
\begin{tikzpicture}[scale=1.4]
\begin{axis}[,xbar, bar width=36pt,
enlarge y limits, xmajorgrids,xlabel={Value X}, xticklabel style={/pgf/number format/1000 sep=},
nodes near coords, nodes near coords align={anchor=west},
xmin =0, ymin=0.5, ymax=3.5, ytick= {1,2,3}
, yticklabels={value1,value2 ,Value3}]
\addplot coordinates {(1471.2,1) (200.6,2) (157.3,3)};
\end{axis}
\end{tikzpicture}
Many thanks in advance
Didou139