Hier mal ein vollständigeres Beispiel..
Code:
\documentclass{article}
\usepackage{german}
\usepackage[latin1]{inputenc}
\usepackage{pstricks-add}
\begin{document}
\thispagestyle{empty}
\begin{pspicture}(4, -1)(8, 15)
\psset{xAxisLabel=$\frac{t}{h}$, yAxisLabel=$\frac{v}{\frac{km}{h}}$}
\begin{psgraph}[arrows=->, Dx=0.01, Dy=10](0, 0)(0, 0)(0.11, 89){8cm}{10cm}
\psline[linecolor=blue](0, 0)(0.010, 60)(0.010, 60)(0.018, 60)
\end{psgraph}
\end{pspicture}
\end{document}
Warum muss dein X-Schritt so klein sein? Da kann man doch nichts mehr erkennen. Reicht da nicht Dx=0.01?
Edit: oder du gehst auf v[m/s] und t[s].
Code:
\begin{pspicture}(4,-1)(8,15)
\psset{xAxisLabel=$t [s]$, yAxisLabel=$v [\frac{m}{s}]$}
\begin{psgraph}[arrows=->, Dx=1, Dy=10](0, 0)(0, 0)(10, 89){8cm}{10cm}
\psline[linecolor=blue](0, 0)(1, 60)(1, 60)(2, 60)
\end{psgraph}
\end{pspicture}
Wobei ich solche Diagramme nur in drei zusammenhängenden Darstellungen kenne.
1.: Y = a[m/s²], X = t[s] Beschleunigung
2.: Y = v[m/s], X = t[s] Geschwindigkeit
3.: Y = s[m], X = t[s] Weg