Date: Mon, 13 Nov 2006 23:18:46 -0500
Reply-To: Ya Huang <ya.huang@AMYLIN.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ya Huang <ya.huang@AMYLIN.COM>
Subject: Re: GPLOT: thickness of symbol outline
Draw the symbol multiple times, with each time the symbol size
increase a bit, so the circle looks thicker :-)
symbol1 v=circle c=black i=none h=2;
symbol2 v=circle c=black i=none h=2.2;
symbol3 v=circle c=black i=none h=2.4;
proc gplot data=sashelp.class;
plot weight*height=1 weight*height=2 weight*height=3/ overlay;
run;
If you really want a better looking, thicker circle, you
may need to go annotation.
On Mon, 13 Nov 2006 16:45:31 -0800, ptv-sas@sociology.osu.edu <ptv-
sas@SOCIOLOGY.OSU.EDU> wrote:
>Using GPLOT, I am plotting some points using an open circle.
>
> symbol2 v=circle c=black i=none h=2.5;
>
>Is there any way to thicken the circle's outline?
|