\documentclass[12pt,a4paper,oneside, chapterprefix=false]{scrreprt}
\usepackage{pgfplots}
\begin{document}
\begin{figure}[ht] \centering
\pgfplotsset {width=0.9\textwidth,height=0.4\textheight,
xtick={1995,1999,2003,2007,2011},
x tick label style={/pgf/number format/1000 sep=},
xlabel={Jahr},
y tick label style={/pgf/number format/1000 sep=},
extra x ticks={1998},
extra x tick labels={{1998: Einführung}},
extra x tick style={grid=major, tick label style={rotate=90, xshift=+4.75cm, yshift=+0.25cm}},
%ylabel={Anzahl Mitarbeiter}
enlarge x limits=0.01}
\centering
\begin{tikzpicture}
\begin{axis}
[legend pos=north west, scale only axis,
xmin=1995,xmax=2011,
ymin=0, ymax=1400,
axis y line*=left,% the ’*’ avoids arrow heads
ylabel=Anzahl der Mitarbeiter]
\addplot table [col sep=comma, trim cells=true, y=Mitarbeiter] {Entwicklung19952011.csv};
\addlegendentry{Anzahl der Mitarbeiter}
\end{axis}
\begin{axis}
[legend pos=south east, scale only axis,
xmin=1995,xmax=2011,
ymin=0, ymax=250,
axis y line*=right,
axis x line=none,
ylabel=Umsatz in Mio. Euro]
\addplot table [col sep=comma, trim cells=true, y=Umsatz] {Entwicklung19952011.csv};
\addlegendentry{Umsatz in Mio. Euro}
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
Lesezeichen