Click here to see the SAS code.
Click here to see the example.

---------------------------------------------------------------

This is a pretty straightforward bar chart, with only a few "tricks".

In order to get the exact same sort-order as the chart I was imitating,
I add a .001 increment to some of the bars that had exactly the same
value - this is such a small fraction of the total bar, that the bars
still "look" the same height (but they now sort in my desired order).

I use a large "goptions ypixels" to make the chart very tall.

I use the image= option on the pattern statements to specify an
image of the flags.  Be *very* careful here! - the pattern statements
are assigned in alphabetic order (based on the subgroup=country_plus
values), so if the order of the those changes, then you will be 
putting the wrong image with the wrong bar!

Back to Samples Index