BookmarkSubscribeRSS Feed
ff7t
Calcite | Level 5

Hi,

 

I am new in using the proc sgplot. 

 

I am working with the following SAS code:   

 

proc sgplot data=count;

vbar count /group=type datalabel datalabelattrs=(size=14);

xaxis labelattrs=(size=12) valueattrs=(size=12) ;

format type type.;

label count="AAA";

title "AAA";

yaxis grid valueattrs=(size=12);

run;

 

I have the the group=type and formattede the type. I would like to have the type in size 12. But I don't know how to do that?

 

Thanks and greeting Ane

1 REPLY 1
WarrenKuhfeld
Ammonite | Level 13

Are you asking about font size in the legend? Name= in vbar links to the keylegend statement, which can then control the size.

 

proc sgplot data=sashelp.iris;
   vbar petalwidth /group=species datalabel datalabelattrs=(size=14) name='a';
   keylegend 'a' / valueattrs=(size=12);
run;

 

sas-innovate-white.png

🚨 Early Bird Rate Extended!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Lock in the best rate now before the price increases on April 1.

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1352 views
  • 2 likes
  • 2 in conversation