[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@yahoogroups.com, "Jim Robson" <[EMAIL PROTECTED]> wrote:
>
> Hi Jason,
> 
> You can do this using AxisRenderers, as follows:
> 
> 
> 
>  tickPlacement="none" />
> 
> 
> 
> 
>  tickPlacement="none">
> 
> 
> 
> HTH
> Jim
>




[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.















--- In flexcoders@yahoogroups.com, "Jim Robson" <[EMAIL PROTECTED]> wrote:
>
> Hi Jason,
> 
> You can do this using AxisRenderers, as follows:
> 
> 
> 
>  tickPlacement="none" />
> 
> 
> 
> 
>  tickPlacement="none">
> 
> 
> 
> HTH
> Jim
>




[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 am trying to achieve is to just 
have
> the line show and nothing else, until you mouse of the line thus
> seeing a dataTip.
> 
> I don't want to see any numbers on the x or y axis or see the x or 
y
> axis line.
> 
> I am not sure if this is possible without extending the current
> lineChart. Is it?
> 
> Thanks, Jason
>




[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