I want to plot the function $\frac{3 x}{1 + x}$ with pgfplots. Using
\begin{tikzpicture}
\begin{axis}[axis x line=none, axis y line=none, no markers]
\addplot {3 * x / (1 + x)};
\end{axis}
\end{tikzpicture}
I get this: 
This is obviously wrong. The same function plotted in Grapher.app:

