Is there a way to modify the tip i.e.
proc format;
value yr 12='12 Years Old'
13='13 Years Old'
14='14 Years Old'
15='15 Years Old'
16='16 Years Old';
value $gender 'M'='Male'
'F'='Female';
run;
ods graphics / width=15cm height=10cm noborder imagemap=on;
proc sgplot data=sashelp.class noborder;
hbar sex / group=age
seglabel
tip=(age sex)
tipformat=(yr. $gender.)
tiplabel=(auto 'Gender')
;
xaxis label='Freq';
yaxis label='Gender';
format sex $gender.;
run;
ods graphics off;
Does this link outlining how to create custom tooltips help?
At this time (SAS release 9.4m6), I don't think it is possible to control any of those 3 things you mentioned.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.