Jim, thanks for the tip.  How do you get rid of the
horizontalGridLines?  I was able to remove the x & y axis but the
small grid lines in the chart are still there. 

Any suggestions?  horizontalGridLines="false' doesn't work as it is
datagrid property.

Thanks, Jason



--- In flexcoders@yahoogroups.com, "Jim Robson" <[EMAIL PROTECTED]> wrote:
>
> Hi Jason,
> 
> You can do this using AxisRenderers, as follows:
> 
> <!-- Set look & feel for y-axis -->
> <mx:verticalAxisRenderer>
> <mx:AxisRenderer showLabels="false" showLine="false"
> tickPlacement="none" />
> </mx:verticalAxisRenderer>
> 
> <!-- Set look & feel for x-axis -->
> <mx:horizontalAxisRenderer>
> <mx:AxisRenderer showLabels="false" showLine="false" 
> tickPlacement="none">
> </mx:AxisRenderer>
> </mx:horizontalAxisRenderer>
> 
> HTH
> Jim
>


Reply via email to