Consider the following MWE:
Code: Select all
\documentclass[danish]{article}
\usepackage{babel}
\usepackage{pst-plot}
\savedata{\data}[{1924,300},{1928,510},{1932,310},{1936,880},{1948,700},
{1952,730},{1956,820},{1960,660},{1964,1100},{1968,1160},
{1972,1220},{1976,1130},{1980,1070},{1984,1300},{1988,1430},
{1992,1810},{1994,1750},{1998,2176},{2002,2399}]
\begin{document}
\begin{pspicture}(10cm,6cm)
\psset{
xAxisLabel={},
yAxisLabel={}
}
\begin{psgraph}[
xAxis=false,
yAxis=false
](0,0)(0,0)(9.5,5.5){10cm}{6cm}
\psaxes[
Ox=1920,
dx=1,
Dx=10,
Oy=0,
dy=1,
Dy=500
]{->}(0,0)(9.5,5.5)[{\AA}r,0][Antal deltagere,90]
\dataplot{\data}
\end{psgraph}
\end{pspicture}
\end{document}
It is obviously some trivial mistake by me but I cannot find it.