By default, there are too many tickmarks on your x (horizontal) axis. You could specify exactly which tickmarks you want in an axis statement 'order=', or here's a quick hack to just get tickmark labels at the left & right (just 2 major tickmarks)... axis1 major=(number=2) minor=none; proc gplot data=wine; title "Time Series Plot of the Australian Wine Sales dataset"; plot Sales*time / haxis=axis1; symbol1 i=join; run;
... View more