Is there a way to insert text in the bars generated by pgfplots? I have the following code and want to insert some text in each bar:
Code: Select all
\begin{tikzpicture}
\begin{axis}[ybar,yticklabels={,,}, xticklabels={,,},xtick=\empty, ytick=\empty, hide y axis]
\addplot[fill=gray, bar width=31pt] plot coordinates
{(0.5,0.3) (0.75,0.6) (1,1)};
\end{axis}
\end{tikzpicture}