tags:

views:

477

answers:

1

Is it possible to change the starting value on an axis for a chart in Flex 3.4? For example, rather than the y axis starting at 0, have it start at 50.

+2  A: 

If you are using a LinearAxis or DateTimeAxis, you can set the minimum and maximum properties. See the flex documentation at http://livedocs.adobe.com/flex/3/langref/mx/charts/LinearAxis.html

Relic
Works perfectly, thanks.
Alex Jillard