You can use FORMAT to change the formating
used for axis labels.
.
Try something like this:
FORMAT Y DECIMAL "$###,###,###.00"
or to add degrees symbols using Unicode:
FORMAT Y DECIMAL "#.##\u00B0"
To force three decimals:
FORMAT Y DECIMAL "#.000"
There is a little more about FORMAT on
the blog:
http://dbentrance.com/blog/?p=92
:
- Tod