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