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.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.