up vote 0 down vote favorite
share [g+] share [fb]

I want to set Maximum and minimum value for X axis in bar chart in flex action script 3 file.

Following line in working in MXML file but I want these code in actionscript 3.

can anybody change this into Actionscript 3.

thanks..

link|improve this question

0% accept rate
Make sure you indent 5 spaces before you post code - something tells me not all of what you intended is showing up. – Jeff Pinkston Sep 18 '09 at 18:08
feedback

2 Answers

You can do the following:

var vAxis:LinearAxis = new LinearAxis();
vAxis.maximum = 100;
vAxis.minimum = 0;

This won't guarantee a label but it will keep the axis at a fixed size.

link|improve this answer
feedback

In MXML

<mx:ColumnChart ...>
    <mx:verticalAxis>
        <mx:LinearAxis id="vAxis"
                 minimum="0" 
                 maximum="100" />
    </mx:verticalAxis>
</mx:ColumnChart>

For actionscript see slashnick's answer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.