[flexcoders] Re: Chart VerticlaAxis Maximum

2006-06-26 Thread ruddyvanduynslager
Brendan, Thanks for that elegant resolution. svktiilikainen , I'm working whith Flex 2 Beta 3, and I've already set the LinearAxis, and unfortunately, it doesn't works. May be a bug ? Ruddy Yahoo! Groups Sponsor ~-- Yahoo! Groups gets a make

[flexcoders] Chart VerticlaAxis Maximum

2006-06-25 Thread ruddyvanduynslager
Hi, I would change the maximum vertical axis value in actionScript. I've tried this: myChart.verticalAxis.maximum = ... but that doesn't works. It seem that the properties 'maximum' cannot be accessible via myChart.verticalAxis. Some ideas ? Thanks

[flexcoders] Re: Dynamic lineSeries

2006-06-15 Thread ruddyvanduynslager
Hello Tom, Many thanks for your attention. For the showdataEffect, the error displayed is: Access of possibly undefined property showDataEffect through a reference with static type mx.charts.series:LineSeries. for the stroke problem, here is the copy of the variables found in the debug

[flexcoders] Re: Chart - How to set up color on series ? Bug ?

2006-06-15 Thread ruddyvanduynslager
Thanks Ely for the explanation. Ru Yahoo! Groups Sponsor ~-- Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM

[flexcoders] Chart - How to set up color on series ? Bug ?

2006-06-14 Thread ruddyvanduynslager
In Beta 2, to assign colors on a Pie chart, I used this code (first serie, first color): chrt_pieTR.series[0].fills[0].color=0xFF. Now in Beta 3, that code doesn'nt work anymore., and I receive an error The only place where I can find something about fills.color, is just below the

[flexcoders] Dynamic lineSeries

2006-06-14 Thread ruddyvanduynslager
I try to construct new lineSeries with the code: var ls : LineSeries = new LineSeries(); ls.yField = strName; ls.displayName = strName; ls.name = strName; ls.id=id+strName; this works perfect. But with ls.radius=5 nothing happend And with ls.showDataEffect = interpolate Ls.stroke = new

[flexcoders] Re: Chart - How to set up color on series ? Bug ?

2006-06-14 Thread ruddyvanduynslager
Ok, I' have found it. For those which have some interrest, I used this: chrtPie.series[0].setStyle(fills,arrColorSerie); arrColorSerie is an array containing all the colors. Yahoo! Groups Sponsor ~-- Protect your PC from spy ware with award

[flexcoders] Re: Dynamic lineSeries

2006-06-14 Thread ruddyvanduynslager
Have found something The problem is that I do not see anything during the rendering, however in the debug mode, the data are well fillin ?!!!??? var ls : LineSeries = new LineSeries(); ls.yField = name; ls.displayName = name; ls.name = name; ls.id=id+name;