Quando se tem mais de um gráfico de barras em um eixo pgfplots, como no exemplo a seguir, o gráfico vermelho noprincipaldo código acaba como ofundobarra da trama. Acho isso confuso - principalmente porque tenho que criar uma legenda em uma lista no final e inverter a ordem ali.
Existe alguma maneira de colocar as barras vermelhas no topo sem alterar a ordem do código?
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[xbar,]
\addplot[fill=red]
coordinates {(1,1)};
\label{red}
\addplot[fill=blue]
coordinates
{(1,1)}; \label{blue}
\end{axis}
\end{tikzpicture}
\begin{itemize}
\item[\ref{blue}] blub
\item[\ref{red}] red
\end{itemize}
\end{document}
Responder1
Você pode mudar a ordem chamando xbar=-2pt, bar width=-10pt
(o negativo dos valores padrão para o espaço entre as barras e a largura das barras):
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[xbar=-2pt, bar width=-10pt]
\addplot[fill=red]
coordinates {(1,1)};
\label{red}
\addplot[fill=blue]
coordinates
{(1,1)}; \label{blue}
\end{axis}
\end{tikzpicture}
\begin{itemize}
\item[\ref{blue}] blub
\item[\ref{red}] red
\end{itemize}
\end{document}
Alternativamente, você poderia usar
xbar,
/pgf/bar shift={%
% total width = n*w + (n-1)*skip
% -> subtract half for centering
0.5*(\numplotsofactualtype*\pgfplotbarwidth + (\numplotsofactualtype-1)*(2pt)) -
% the '0.5*w' is for centering
(.5+\plotnumofactualtype)*\pgfplotbarwidth - \plotnumofactualtype*(2pt)}
que é o negativo da função utilizada para compensar as barras.