Date: Fri, 31 Oct 2008 07:25:26 -0400
Reply-To: Mathilde <mlass2000@YAHOO.FR>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Mathilde <mlass2000@YAHOO.FR>
Subject: SAS Graph ignoring symbol value=
Hello,
I've got a problem with the symbol definition with the SAS GRAPH package.
I'm working with SAS 9.1.3.
The value statement is not taked account on the graph. What is strange is
that the symbols are correct into the legend box, but not on the graphic.
The lines are big and no dot neither square appear.
I've read some topics about this problem resolved with adding a color
option in the symbol definition but it doesn't work.
goptions reset=all;
goptions ftext='Arial' htext=3.0 gunit=pct devmap=winansi keymap=winansi;
symbol1 value=dot w=1 interpol=stepjl color=green cv=black l=1;
symbol2 value=square w=1 interpol=stepjl color=grey cv=blue l=2;
axis1 label=('Mois') order=(0 to 48 by 3) minor=(n=2);
axis2 order=(0.0 to 1 by 0.1) minor=(n=1) label=(angle=90 rotate=0 'Taux de
survie (%)');
legend1 POSITION=( BOTTOM LEFT inside) value=(&legend)
MODE=SHARE cframe=ligr shape=symbol(5,1)
label=none across=1;
proc gplot data=survie;
plot survival*durmdc=diab2 / vaxis=axis2 haxis=axis1 legend=legend1 ;
format survival fmt.;
run;
quit;
Could anyone help me ?? Thanks in advance.
ML