Date: Mon, 17 Jan 2000 10:50:00 +0000
Reply-To: aratcliffe@cix.compulink.co.uk
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Andrew Ratcliffe <aratcliffe@CIX.COMPULINK.CO.UK>
Organization: CIX - Compulink Information eXchange
Subject: Re: GPLOT & SYMBOLs question
In article <85un03$tnu$1@nnrp1.deja.com>, gijs.noordhoek@iname.com (Gijs
Noordhoek) wrote:
> For some reason, SAS just won't use different symbols for plots in the
> same graph. When I make two plots and define symbol1 and symbol2, SAS
> only uses symbol1. Below is a simple example that doesn't work. I want
> to combine a line and stars (without a line).
Gijs, are you using a gdevice that has multiple colours? If so, SAS will
use symbol1 and cycle through all available colours before moving to use
symbol2. You can overcome this by specifying a colour on your symbol
statement, e.q.
proc gplot;
plot y*x z*x /overlay;
symbol1 i=join v=none c=black;
symbol2 i=none v=star c=black;
run;
quit;
============================================================
Andrew Ratcliffe ---- Ratcliffe Technical Services Limited
SAS Institute Registered Partner
Invited Speaker, SUGI 2000 (Indianapolis, USA)
Office: +44 (0) 1322-525672
Mobile: +44 (0) 7714-719206, (SMS email: aratcliffe@sms.genie.co.uk)
Fax: +44 (0) 870-050-9662 / +44 (0) 1322-525672
Web site: http://www.ratcliffe.demon.co.uk
============================================================