Achsenbeschriftung zweite X-Achse
Hallo,
ich habe das folgende Problem, ich habe ein Diagramm erstellt. Funktioniert auch alles bis auf die Beschriftung der rechten X-Achse. Die Beschriftung bleibt einfach auf der linken Seite.
Hier mein Code:
\begin{figure}[htb]
\centering
\begin{tikzpicture}
\pgfplotsset{
width=1\textwidth-45pt,
height = 1\textheight,
legend style={%
at={(0.99,0.99)},
anchor=north east
},
legend cell align=left,
ticklabel shift={0.05cm},
tick label style={/pgf/number format/1000 sep=},
xmin=0,xmax=7000,
no markers
}
\begin{axis}[
grid = major,
xlabel = {Stückzahl},
% x unit=\si{\second},
ylabel = {Rauheit},
% y unit=\si{\percent},
ymin=0, ymax=6,
enlarge x limits=0.05,
]
\addplot[blue] table [mark=none, x = Zahl,y = Rz ] {V1-73-61.csv};
\addplot[blue] table [mark=none,blue, x=Zahl,y={create col/linear regression={y=Rz}}] {V1-73-61.csv};
\label{Viskositaet}% keine Umlaute verwenden!!!
\end{axis}
%
\begin{axis}[
yticklabel pos=right,% yticklabel auf der rechten Seite
ylabel = {Dichtheit},
%y unit=\si{\percent},
ymin=0, ymax=200,
enlarge x limits=0.05,
xtick=\empty,% xticks nicht noch einmal zeichnen
]
\addplot[red] table [mark=none, x = Zahl,y = pressure ] {V1-73-61.csv};
\addplot[red] table [mark=none,blue, x=Zahl,y={create col/linear regression={y=pressure}}] {V1-73-61.csv};
\addlegendimage{/pgfplots/refstyle=Viskositaet}
\addlegendentry{Druckverlust}
\addlegendentry{Druckverlust Regression}
\addlegendimage{/pgfplots/refstyle=Viskositaet}
\addlegendentry{Rauheit}
\addlegendentry{Rauheit Regression}
\end{axis}
\end{tikzpicture}
\end{figure}
Bei mir sieht das dann so aus :
![alt text][1]
[1]: http://texwelt.de/wissen/upfiles/Latex.PNG
Eine weitere Frage wäre, ob es möglich ist die beiden X-Achsen in Rot und Blau dazustellen?
Vielen Dank im Voraus.