| Date: | Fri, 26 Jun 2009 13:51:00 -0700 |
| Reply-To: | jasonm@UCLA.EDU |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | J M <jasonm@UCLA.EDU> |
| Subject: | Re: Gplot Annotated Data Font Size |
|
| In-Reply-To: | <39762.150.142.232.4.1246045407.squirrel@webmail.albany.edu> |
| Content-Type: | text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" |
Does this help?
data annobub;
set occ end=last;
length function color $8 text $20;
retain xsys ysys '2' hsys '3' when 'b';
xc=LVL8;
y=rate;
function='pie';
rotate=360;
size=avg/20;
position='4';
style='psolid';
output;
function='label';
xc=LVL8;
y=rate;
style="'Arial/bold'";
size=1;
color='black';
text=trim(left(rate));
output;
run;
proc gplot data=occ anno=annobub2;
plot rate * LVL8 ;
run;quit
Quoting Mike Zdeb <msz03@albany.edu>:
> hi ... it'd help to see the annotate stuff in context
>
> how about posting more SAS code
>
> it is possible to change font size with ACTIVEX
>
>
> --
> Mike Zdeb
> U@Albany School of Public Health
> One University Place
> Rensselaer, New York 12144-3456
> P/518-402-6479 F/630-604-1475
>
>> I was able to put the values from the variable "rate" inside the
>> bubbles, but I'm not able to change the font size.
>> Does anyone know why?
>> I'm using activex for my device.
>>
>> function='pie';
>> rotate=360;
>> size=avg/20;
>> position='4';
>> style='psolid';
>> output;
>> function='label';
>> xc=LVL8;
>> y=rate;
>> style="'Arial/bold'";
>> size=1;
>> color='black';
>> text=trim(left(rate));
>> output;
>>
>> Thanks,
>> Jason
>>
>
>
|