Jemand eine Lösung dazu? Ist es überhaupt möglich?
\documentclass[a4paper]{report} \usepackage{pgfplots}%Diagramme \begin{document} \begin{tikzpicture} \begin{axis} [ybar, scale only axis, axis y line*=left,% the ’*’ avoids arrow heads ylabel=Achse1] \addplot+[fill=red] coordinates {(1,1) (2, 2) (3,3) }; \end{axis} \begin{axis} [ybar, scale only axis, axis y line*=right, axis x line=none, ylabel=Achse2] \addplot+[fill=blue] coordinates {(1,5) (2, 6) (3,7) }; \end{axis} \end{tikzpicture} \end{document}
MFG, philipp