For what it's worth, here is a similar graphic produced using pstricks. The code should be self-explanatory for those familiar with pstricks, or even tikz/pgf:

\documentclass{article}
\usepackage{pstricks}% http://www.tug.org/PSTricks/main.cgi
\usepackage{pstricks-add}% http://ctan.org/pkg/pstricks-add
\begin{document}
\begin{pspicture*}(-6.2,-6.2)(6.2,6.2)
\psset{unit=5mm,plotpoints=200,algebraic=true,arrows=<->,linewidth=1pt}%
\psclip{\psframe[linestyle=none,linewidth=0pt](-5.5,-1)(3.2045,10)}%
\psplot[linecolor=red,linestyle=solid]{-5.5}{5.5}{0.2*x^2}
\endpsclip
\psclip{\psframe[linestyle=none,linewidth=0pt](3.2045,-1)(5.5,10)}%
\psplot[linecolor=red,linestyle=dashed]{-5.5}{5.5}{0.2*x^2}
\endpsclip
\psclip{\psframe[linestyle=none,linewidth=0pt](3.2045,-1)(15,10)}%
\rput(5.5,1){%
\psplot[linecolor=black,linestyle=solid]{-5.5}{5.5}{0.2*x^2}}
\endpsclip
\psclip{\psframe[linestyle=none,linewidth=0pt](-5.5,-1)(3.2045,10)}%
\rput(5.5,1){%
\psplot[linecolor=black,linestyle=dashed]{-5.5}{5.5}{0.2*x^2}}
\endpsclip
\psdot(0,0) \uput{10pt}[u]{0}(0,0){c}%
\psdot(5.5,1) \uput{10pt}[u]{0}(5.5,1){a}%
\psdot(3.2045,2.0538) \uput{10pt}[u]{0}(3.2045,2.0538){e}%
\end{pspicture*}
\end{document}