Re: [flexcoders] deprecated horizontalAxisRenderer

2008-08-11 Thread coder3
i change the "public function get gutters():Rectangle" to return _gutters in that InnerAxisRenderer.as i don't know why it was returning null before, but so far my application runs fine. thanks! c coder3 wrote: > > it is flex2, and it has no problem with flex2. > > i checked the code, line 2

Re: [flexcoders] deprecated horizontalAxisRenderer

2008-08-11 Thread coder3
it is flex2, and it has no problem with flex2. i checked the code, line 2086 and 2087 are: rect = _leftRenderers[i].gutters; rect.top = _computedGutters.top; the rect is null because _leftRenderers[0].gutters is null, this is leftRenderers. i am not familiar with

Re: [flexcoders] deprecated horizontalAxisRenderer

2008-08-08 Thread coder3
thanks!!! if i use the out of box code, it works fine. but the problem is, i use an extended AxisRenderer .as class, http://bugs.adobe.com/jira/secure/attachment/12340/InnerAxisRenderer.as. now i got this run time error: do i need to modify the class? how? TypeError: Error #1009: Cannot acc

Re: [flexcoders] deprecated horizontalAxisRenderer

2008-08-08 Thread coder3
not sure how to do it. is there an example? thanks Michael VanDaniker wrote: > > You have to tell your AxisRenderer which axis it should render by > setting the axis property. > > --- In flexcoders@yahoogroups.com, coder3 <[EMAIL PROTECTED]> wrote: >> >> >> Hi All, i have flex2 code, and n

[flexcoders] deprecated horizontalAxisRenderer

2008-08-08 Thread coder3
Hi All, i have flex2 code, and now shows warnings in flex 3 for example, ::: ::: will shows warning: 'horizontalAxisRenderer' has been deprecated. Please use 'CartesianChart.horizontalAx