I'm using pgfplots to plot two filled curves. I'd like them to overlap transparently so that the "lower" figure can be seen through the "upper one". Using the forget style mode will draw the first figure transparently, but that's the one that is below !
MWE:
\begin{tikzpicture}
\begin{axis}[ybar,bar width=2pt]
\addplot[color=red,mark=,draw=red,fill opacity=0.5] table[x=0,y=1]\transtable;
\addplot[color=blue,mark=,draw=blue,fill opacity=0.5] table[x=2,y=3]\transtable;
\end{axis}
\end{tikzpicture}
Is there a direct way to get somewhat transparent overlapping plots ?

fill opacity=0.5to theaddplotcommand and please include a simple MWE which in this case 6-7 lines long so easier than typing out the question :). – percusse Dec 5 '12 at 0:34draw opacityinstead offill opacity. Not sure whether I should delete the question. Ideally @percusse can post an answer and I'll accept it, since that's what got me on the right track. – Suresh Dec 5 '12 at 0:53