[flexcoders] Re: criticla problem charting component - coding axis

2006-09-19 Thread olivier
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:

RE: [flexcoders] Re: criticla problem charting component - coding axis

2006-09-19 Thread Ely Greenfield
Hmmm. That shouldn't work either. It should be: this.series = [aa]; Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of olivierSent: Tuesday, September 19, 2006 1:20 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: criticla problem charting

[flexcoders] Re: criticla problem charting component - coding axis

2006-09-14 Thread olivier
Hi, I have to detail my problem. I'm creating a component full actionscript. This component create a CartesianChart adding some functionalities. here is the source code var tAxis:DateTimeAxis=new DateTimeAxis(); tAxis.alignLabelsToUnits=true; tAxis.autoAdjust=true; tAxis.dataUnits=minutes;

RE: [flexcoders] Re: criticla problem charting component - coding axis

2006-09-14 Thread Ely Greenfield
@yahoogroups.comSubject: [flexcoders] Re: criticla problem charting component - coding axis Hi,I have to detail my problem.I'm creating a component full actionscript. This component create a CartesianChart adding some functionalities.here is the source codevar tAxis:DateTimeAxis=new

[flexcoders] Re: criticla problem charting component - coding axis

2006-09-14 Thread trader230
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of olivier Sent: Thursday, September 14, 2006 9:07 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: criticla problem charting component - coding axis Hi, I have to detail my problem. I'm creating

[flexcoders] Re: criticla problem charting component - coding axis

2006-09-13 Thread trader230
Hi Olivier - 'baseAtZero' sets the minimum to zero (if your data are all =0) or the maximum to zero (if the data are 0). Choices for setting the axis range are a) let the chart decide min and max; b) set them yourself. If you want to use baseAtZero=true (with choice (a)), it will set