With traditional SAS/Graph "proc gchart", you can do grouped bar charts, and turn on the 'errorbar' on each bar, and get something a little bit similar (not exactly what you're wanting though). For example:
axis1 value=(angle=90);
pattern1 v=s c=yellow;
proc gchart data=sashelp.revhub2;
vbar type / type=mean sumvar=revenue errorbar=both
group=hub space=0 gspace=5 maxis=axis1;
run;
To get something more like the graph in your link, you'd have to pre-calculate everything, and then put together a special data set to do a grouped bar, with a "floating" bar segment for the yellow part (by 'floating', I mean the lower of the 2 segments would be the same color as the background, making it 'invisible', such as ...
http://robslink.com/SAS/democd6/col8.htm ). And then annotate the box plot onto each of the bars (you'd need to pre-calculate the y-value for each of the pieces of the boxplot to use to construct your box plot: mean, lower, upper, etc). It would be a bit "cumbersome"
🙂
Maybe/hopefully one of the new ODS Graphics procs provides an easier solution(?)
🙂