I'm doing a horizontal bar chart, but in my x axis and in the number in each bar is exponential and I want a "normal" number. How can I do that?
\begin{figure}[h]
\centering
\begin{tikzpicture}
\begin{axis}[
xbar,
width=12cm, height=6cm, enlarge y limits=0.2,
xlabel={total de edifícios certificados},
xticklabel style={/pgf/number format/fixed},
symbolic y coords={HQE, BREEAM, LEED, DGNB, Green Star, Living Building},
ytick=data,
nodes near coords, nodes near coords align={horizontal},
]
\addplot coordinates {(266000,HQE) (250000,BREEAM)(51700,LEED)(834,DGNB)(256,Green Star)(192,Living Building)};
\end{axis}
\end{tikzpicture}

\documentclassand the appropriate packages so that those trying to help don't have to recreate it. – Peter Grill Oct 30 '14 at 17:49