I want to draw a curve which is solid over $0$ to $\rho_1$, but dashed (or dotted) thereafter.
But, despite much experimentation, I can only get it solid all the time. Any thoughts appreciated.
\documentclass[a4paper,font=12]{article}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,spy,positioning,snakes}
\usepackage{curves}
\usepackage{xcolor,colortbl}
\begin{document}
\begin{figure}
\begin{center}
\unitlength = 1mm
\begin{picture}(70,70)(0,0)
\put(0,0){\vector(1,0){70}}
\put(0,0){\vector(0,1){70}}
\put(25,0){\circle*{1.7}}
\put(25,-4){${\rho}_1$}
\put(-10,50){$m(0)$}
{ \curve(0,50, 25, 35, 50, 0) }
\end{picture}
\end{center}
\end{figure}
\end{document}



