BookmarkSubscribeRSS Feed
sanjay1
Obsidian | Level 7

Hi SAS Experts,

 

Is there is anyway to display  the values within in the bars of waterfall chart.  Below is my data and code.

 

data new;
input amount name$;
informat amount dollar10.;
format amount dollar10.;
datalines;
10004556 a1
56477557 a2
582578977 a4
575668686 a5
57657888 a6
56454778 a7
5643898968 a8
8643966 a9
567865787 a10
7547785787 a11
;
run;


proc sgplot data=new;
styleattrs datacolors=(CXF98D29 CX404040 CXDF84BA CXFFD923);
waterfall category=name response=amount/ colorgroup=name datalabel DATALABELATTRS=(Size=8 Weight=Bold) dataskin=none finalbarattrs=(color=CXF6B333);
xaxis display=(nolabel) discreteorder=data;
yaxis offsetmin=0;
run;

 

Thanks & Regards,

Sanjay

1 REPLY 1
ballardw
Super User

How do you want to display a value "within a bar" when the Bar is less than a single character thick?

You also would need to consider contrast such as not attempting to display black text on a black (or other very dark color).

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 884 views
  • 0 likes
  • 2 in conversation