Hi all!

Thank you for your help !
I finally found the problem:

The series creation was "wrong" :

   my way :
                  aa:AreaSet=new AreaSet();
                  aa.series=new Array();
                  //--inserting series
                  this.series=aa;

    correct way:
                aa:AreaSet=new AreaSet();
                  aa.series=[];
                  //--inserting series
                  this.series=aa;

Using this way, all my problems are resolved.

series=new Array()-> series=[];


Lack of documentation ?



Olivier

--- In [email protected], "Ely Greenfield" <[EMAIL PROTECTED]> 
wrote:
>
>  
>  
>  
> Hi Olivier.  it's hard to diagnose your problem, or even what 
behavior
> you're seeing, without a more details description of what you're 
trying
> to do, what you're doing, and what the actual behavior you're 
seeing is.
> Sample code would help too.
>  
> Flex 1, or Flex 2?
>  
> Ely.
>  
> 
> ________________________________
> 
> From: [email protected] 
[mailto:[EMAIL PROTECTED] On
> Behalf Of olivier
> Sent: Wednesday, September 13, 2006 2:11 AM
> To: [email protected]
> Subject: [flexcoders] criticla problem charting component - coding 
axis
> 
> 
> 
> Hi,
> 
> I've a critical problem when I want to code in actionscript a chart 
> with a linearxis. Indeed, all propertie can be set but the 
baseAtZero 
> doesn' t work properly. It computes the maximum value but the 
minimum 
> value is always 0. I've tried with several different series without 
any 
> success.
> 
> I found the same topics on others forums but nobody can bring an 
answer 
> to this problem.
> 
> I'm blocked on this aspect.
> 
> Is anybody has an example or guidelines (for example, this property 
> must be set before one other etc..) to solve this problem ?
> 
> Thank you in advance
> 
> O.
>







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/flexcoders/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to