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
Rhodochrosite | Level 12

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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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