[flexcoders] Re: Graphs: Can you remove all x & y axis information from a lineChart?

2007-01-02 Thread jnewport
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@yahoogrou

[flexcoders] Re: Graphs: Can you remove all x & y axis information from a lineChart?

2007-01-02 Thread jnewport
Ok, got it. I removed them with the following. Maybe their is an easier way, but this worked.

[flexcoders] Re: Graphs: Can you remove all x & y axis information from a lineChart?

2007-01-02 Thread Tim Hoff
Hi Jason, You could use a labelFunction for the Horizontal and Vertical Axis. Just return an empty string. -TH --- In flexcoders@yahoogroups.com, "jnewport" <[EMAIL PROTECTED]> wrote: > > Is it possible to remove all the labeling x & y labels and data from > showing on a linechart? What I a

[flexcoders] Re: Graphs: Can you remove all x & y axis information from a lineChart?

2007-01-02 Thread Jim Robson
Hi Jason, You can do this using AxisRenderers, as follows: HTH Jim