Hi!
Here's my code- for the 3 values of stat_id I get 3 overlay plots.
When I run this i get an automatic legend of the 3 colors of stat_id.
I can cancel that automatic legend by creating my own legend,
BUT how can I have a graph with no legends at all?
Thanks,
Tal
proc gplot gout=hh.no_legend data=hh.jan_03_excel;
plot O3*d=stat_id /vaxis = axis2 haxis=axis1 /*LEGEND=LEGEND1*/ name="O3 January 2003.gif";
where day in (5,6,7,8,9,10,11,12);
run; quit;