I am using the following code:
goptions reset=all;
proc gplot data=pred;
plot sales*date=_type_ /
haxis = '1JAN07'd to '1JUL10'd by qtr
href = '15Dec07'd '15Dec08'd '15Dec09'd chref=cyan;
where _type_ in ('ACTUAL','FORECAST');
symbol1 v=star i=none;
symbol2 v=circle i=join;
format date MONYY7.;
run; quit;
When the graph is produced, both 'ACTUAL' and 'FORECAST' series are represented by stars, and there are no connecting lines. 'ACTUAL' is black and 'FORECAST' is red. Essentially, the SYMBOL2 statement is completely ignored. (No matter how I specify symbol1, symbol2 is a copy of it, just in red.)
I have tried changing the placement of the symbol statements, i.e., before the proc gplot statement, to no avail.
Any ideas? Thanks!