Hi Rs,
By default, the bar starts from zero (or the direction that contains zero), and "grow" to the data value. If your axis is reversed, and your data are positive, then the zero direction is at the top, and the bar will start from the top. If your data are negative, the bar will start from the bottom.
If you want the bar to start from the bottom (from the direction of positive infinity), you may use BarLayer.setBaseLine. For example (in VB/VBScript):
Set layer = c.addBarLayer(data)
Call layer.setBaseLine(1E100)
Hope this can help.
Regards
Peter Kwan |