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

In this example, I use the regular-old "arial" hardware font,
but I do some 'tricky' typing to get the spanish special-characters.
I use the following tool on a windows pc to generate the
special characters, and then cut-n-paste them ...
 
   Start->Programs->Accessories->System Tools->Character Map

I use the special nlnum format, and the spanish locale
to make the numbers show up with dots instead of commas ...

 options LOCALE=Spanish_Spain;
 format accidents nlnum15.0;

This is a simple "grouped" bar chart, and I use annotate to 
draw the gray diagonal line from the top/left to the bottom/right.
The legend position is used to put the legend 'inside' the axis area.

Back to Samples Index