Hi,
You can do this with the VerticalAxisRenderer. For example:
<mx:LineChart x="10" y="63" id="myLineChart" width="473" height="106"
dataProvider="{myDataArrayCollection}">
<mx:verticalAxisRenderer>
<mx:AxisRenderer id="myVerticalAxisRenderer" placement="right" />
</mx:verticalAxisRenderer>
<mx:verticalAxis>
<!-- To have an autoscaling vertical axis that doesn't have to
start at 0 -->
<mx:LinearAxis baseAtZero="false" autoAdjust="true" />
</mx:verticalAxis>
<mx:series>
<mx:LineSeries displayName="Series 1" yField="valueProperty"/>
</mx:series>
</mx:LineChart>
HTH,
Bastiaan
--- In [email protected], "g_odds" <[EMAIL PROTECTED]> wrote:
>
> I've been hunting through the documentation but cannot find how to
> make a chart that has a single vertical axis on the right-hand side
> rather than on the default, left-hand side. Am I missing something
> built-in or is this not currently supported?
>