I have a LinearAxis that's used in a LineChart to display a
LineSeries, where the yField is a numeric value from 0->100.  By
default, it displays 0 at the x/y origin, and ascends up the y-axis to
a max of 100.

What I need to do is reverse that, so that the y-axis starts at 100
and ascends (visually) up to 0.  Does anyone know how I might
accomplish this?  I've tried the following settings on LinearAxis, but
it doesn't work:

   LinearAxis.baseAtZero=false;
   LinearAxis.autoAdjust=false;
   LinearAxis.minimum=100;
   LinearAxis.maximum=0;

Same sort of question as: how do you display a dateTimeAxis in reverse
time order? Or, how do you display a category axis in reverse (or
custom) order?.  "LineSeries.sortOnXField=false" apparently can force
the x-axis order to tie to the order of the dataProvider; but I 
haven't yet found how to reverse the default sort on the y-axis.

Many thanks!

-Peter Demling
 Lexington, MA

Reply via email to