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]ups.com,
"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]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On
> Behalf Of olivier
> Sent: Wednesday, September 13, 2006 2:11
AM
> To: [EMAIL PROTECTED]ups.com
>
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.
>