Consider the following MWE:
Code: Select all
\documentclass{article}
\usepackage{pst-plot}
\begin{document}
\begin{figure}
\centering
\savedata{\data}[{2,64},{4,32},{6,16},{8,8},{10,4},{12,2},{14,1}]
\begin{pspicture}(10cm,10cm)
\psset{xAxisLabel={},yAxisLabel={}}
\begin{psgraph}[dx=2,Dx=2,Dy=10]{->}(0,0)(-0.5,-2.5)(15.5,79){10cm}{10cm}
\psaxes[yAxis=false,ticks=none,labels=x,xLabels={,,A0,,A1,,A2,,A3,,A4,,A5,,A6,}](15.5,79)[Format,0][Antal ark A6-papir,90]
\dataplot[plotstyle=dots,dotstyle=o,fillcolor=red]{\data}
\end{psgraph}
\end{pspicture}
\end{figure}
\end{document}
I have tried to look at the


Thank you in advance!