I am wondering how to change the x axis for the following code.
I want the x axis to start at 0, but the fist coordinate along the x axis to be Monday followed by Tuesday. Is there an easy way to do this or do I have to sue the uput command?
Code: Select all
\documentclass[12pt]{article}
\usepackage{pstricks-add}
\begin{document}
\psset{unit=0.66}
\begin{pspicture}(0,0)(10,7)
\psaxes[Ox=0,Oy=0,Dx=10,Dy=1000,dx=2,dy=1.25,tickstyle=bottom]
(10.5,7.5)
\psline[linewidth=1.5pt](1,1.5)(2,4)(3,5.5)(4,6.6)(5,7)
\end{pspicture}
\end{document}