Hi all,
I am working on creating a graph that includes two lines of xaxis labels, one bolded and the second not. I am unsure how to selectively bold the first line in proc sgplot. I would appreciate any help. Thanks!
graph I am attempting to produce:
current code:
TITLE 'title1';
PROC SGPLOT DATA=work.test;
VBAR State / RESPONSE=Col
FILLATTRS=(color=blue);
XAXIS LABEL = 'State '
LABELATTRS=(WEIGHT=bold);
YAXIS LABEL='Percent'
LABELATTRS=(WEIGHT=bold)
GRID
VALUES=(0 to 4 by 1);
REFLINE 1.8 / AXIS=y
LINEATTRS= (COLOR=indigo pattern=dash)
LABEL='NA = 1.8'
LABELLOC=inside;
RUN;
TITLE;
Thank you!