Hallo zusammen,

ich würde gerne ein pgfplot wie im Anhang gezeigt erstellen, konnte leider nichts dazu im Forum oder in der Doku finden. Vielleicht kann mir jemand einen Tip geben.

Der in der Grafik gezeigte schwarze Teil habe ich wie folgt schon realisiert, der rote Teil ist die Herausforderung.


Code:
\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}},
enlarge x limits=0.01}
			
						
\centering
\begin{tikzpicture}
\begin{axis}
[legend pos=north west] 
 
\addplot table [col sep=comma,trim cells=true,y=Mitarbeiter] {Entwicklung19952011.csv};
\addlegendentry{Anzahl}
\addplot table [col sep=comma,trim cells=true,y=Umsatz] {Entwicklung19952011.csv};
\addlegendentry{Umsatz Euro}

\end{axis}
\end{tikzpicture}
\caption{TEST} 
\footnotesize Quelle: blupp

{\label{fig:1}}

\end{figure}

Vielen Dank schonmal im voraus!