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.
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.
Ready to level-up your skills? Choose your own adventure.