Wie verhindere ich einen Zeilenumbruch bei \addlegendentry?
Ich habe die Legende über die Abbildung gestellt, da ich diese mit \textwidth vergrößert habe. In meinem Dokument, leider sieht man dies nicht im Minimalbeispiel, erhalte ich einen Zeilenumbruch.
Wie kann ich gffs. beide Legeneinträge nebeneinander anstelle von unteneinander stellen?
![alt text][1]
\documentclass[fontsize=12pt,paper=a4]{scrartcl}
\usepackage{pgfplots,filecontents}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{dateplot}
\usepackage{tikzscale}
\usepackage{blindtext}
\begin{filecontents}{cbisinterestrates.csv}
Date,Overnight CBI rates,CBI current account rates
1999-12-30,10.00,4.50
2000-01-04,10.00,4.50
2015-12-31,7.50,5.50
2016-01-01,7.50,5.50
\end{filecontents}
\begin{filecontents}{cbisinterestrates.tikz}
\begin{tikzpicture}
\sffamily
\begin{axis}[
date ZERO=2000-01-01,
date coordinates in=x,
no marks,
width=12cm,height=6cm,
enlargelimits=false,
xticklabel={\tiny\year},
xtick={2000-1-1,2001-01-01,2002-01-01,2003-01-01,2004-01-01,2005-01-01,2006-01-01,2007-01-01,2008-01-01,2009-01-01,2010-01-01,2011-01-01,2012-01-01,2013-01-01,2014-01-01,2015-01-01,2016-01-01},
xtick pos=left,
xtick align=outside,
ymin=0,ymax=28,
ytick={0,4,...,28},
yticklabel={\pgfmathprintnumber[verbatim]{\tick}\%},
ytick style={draw=none},
yticklabel pos=right,
ymajorgrids=true,
legend style={
draw=none,
legend cell align=left,
at={(0.00,1.4)},
anchor=north west,
legend image code/.code={
\filldraw[##1] (-.5ex,-.5ex) rectangle (1ex,1ex);
}
}
]
\addplot table[col sep=comma,x=Date,y={Overnight CBI rates}] {cbisinterestrates.csv};
\addlegendentry{Overnight CBI rates};
\addplot table[col sep=comma,x=Date,y={CBI current account rates}] {cbisinterestrates.csv};
\addlegendentry{CBI current account rates};
\end{axis}
\end{tikzpicture}
\end{filecontents}
\begin{document}
\begin{figure}
\begin{center}
\includegraphics[width=1.0\linewidth]{cbisinterestrates.tikz}
\end{center}
\caption{Interbankfinanzkredite}
\label{Fig:interbankfinanzkredite}
\end{figure}
\end{document}
[1]: http://texwelt.de/wissen/upfiles/cbi.jpg