[flexcoders] Problems with showDataEffect trigger looping on Chart Seris in Flex 3

2008-06-06 Thread mgrayfmr
Has anyone run into this issue in Flex 3? The showDataEffect is looping endlessly, causing a transtion to run over and over again. I have two charts, one a LineChart and one a ColumnChart. On the series of each, I have set the showDataEffect={nameOfEffectHere} For the LineChart, the effect is

[flexcoders] Re: Webservice implementation switched to e4x after Flex 2.0.1 hotfix 2

2008-06-05 Thread mgrayfmr
--- In flexcoders@yahoogroups.com, mgrayfmr [EMAIL PROTECTED] wrote: Hi there: We've run into some webservice issues here when switching from Flex 2.0.1 (not the hotfix version) to Flex 3. We are retrieving data from a .NET backend using a SOAP/wsdl format. When we switched to Flex 3.0

[flexcoders] Webservice implementation switched to e4x after Flex 2.0.1 hotfix 2

2008-06-04 Thread mgrayfmr
Hi there: We've run into some webservice issues here when switching from Flex 2.0.1 (not the hotfix version) to Flex 3. We are retrieving data from a .NET backend using a SOAP/wsdl format. When we switched to Flex 3.0, the structures returned on the repsonse were sometimes a little different.

[flexcoders] Help !!! How to decode URL encoding

2007-04-10 Thread mgrayfmr
Hi Guys: I am trying to parse a string that is URL encoded, and I want to remove, or decode it. I was surprised that there wasn't something available in a utility class already in AS3. Anyone ever run into this ? I saw a post that had a link to some code that sounds like it would solve my

[flexcoders] Re: Help !!! How to decode URL encoding

2007-04-10 Thread mgrayfmr
#decodeURI() --- In flexcoders@yahoogroups.com, mgrayfmr mgrayfmr@ wrote: Hi Guys: I am trying to parse a string that is URL encoded, and I want to remove, or decode it. I was surprised that there wasn't something available in a utility class already in AS3. Anyone ever run

[flexcoders] Re: Flex2 - Bug with chart Legend and ScrollPolicy

2007-02-28 Thread mgrayfmr
Hey guys: Just an update to this problem. If you put the legend inside a VBox or HBox, and set a fixed width/height, scrollbars can be added. This assumes the scrollpolicy is set to either 'auto' or 'on'. I tried this out and it worked. The only drawback is you can't use percentages for width

[flexcoders] Re: Flex2 - Bug with chart Legend and ScrollPolicy

2007-02-28 Thread mgrayfmr
. --- In flexcoders@yahoogroups.com, mgrayfmr [EMAIL PROTECTED] wrote: Hey guys: Just an update to this problem. If you put the legend inside a VBox or HBox, and set a fixed width/height, scrollbars can be added. This assumes the scrollpolicy is set to either 'auto' or 'on'. I tried this out

[flexcoders] How to align identical CategoryAxis as HorizontalAxis and SecondHorizontalAxis

2007-02-26 Thread mgrayfmr
Help Ely (or anyone who knows) !!! I'm having trouble with the data being displayed in a LineChart. I have same data in a horizontal and secondhorizontal category axis. I am also displaying vertical gridlines using the backgroundElements property. What is happening is that the spacing is

[flexcoders] Re: Charting - create a secondSeries with Actionscript 3.0 ???

2007-02-26 Thread mgrayfmr
, leds usop [EMAIL PROTECTED] wrote: a code post will help :) --- mgrayfmr [EMAIL PROTECTED] mgrayfmr%40yahoo.com wrote: Hey Gang - Has anyone had any experience with dynamically adding a second series to a chart using actionscript 3.0 ? Using a LineChart object I have

[flexcoders] Re: How to align identical CategoryAxis as HorizontalAxis and SecondHorizontalAxis

2007-02-26 Thread mgrayfmr
, it now mathches the scaling of my bottom horizontal axis. Done !!! --- In flexcoders@yahoogroups.com, mgrayfmr [EMAIL PROTECTED] wrote: Help Ely (or anyone who knows) !!! I'm having trouble with the data being displayed in a LineChart. I have same data in a horizontal and secondhorizontal

[flexcoders] Charting - create a secondSeries with Actionscript 3.0 ???

2007-02-23 Thread mgrayfmr
Hey Gang - Has anyone had any experience with dynamically adding a second series to a chart using actionscript 3.0 ? Using a LineChart object I have been dynamically creating new LineSeries under the linechart's series with no problem. I am not having luck adding a second series though. The

[flexcoders] Re: Just curious, A big development team or individual developers

2007-02-23 Thread mgrayfmr
Same here - just me, but hopefully not for long. --- In flexcoders@yahoogroups.com, Paul DeCoursey [EMAIL PROTECTED] wrote: We need a team but alas it is just me (INDIVIDUAL). --- In flexcoders@yahoogroups.com, boy_trike boy_trike@ wrote: I wonder how many people are working on TEAM to

[flexcoders] Does anyone know how to set a legendMarkerRenderer dynamically ???

2007-02-09 Thread mgrayfmr
I am creating LineSeries objects dynamically, and I want to be able to use the CircleItemRenderer for the legend. I tried doing this several ways, but get an error that the renderer cannot be cast to a type of IFactory. I tried making sure CircleItemRenderer was imported, and using new

[flexcoders] Re: Does anyone know how to set a legendMarkerRenderer dynamically ???

2007-02-09 Thread mgrayfmr
did not find the IFactory interface. So it is trying to load my renderer. It looks like the answer would be to sub-class the renderer and implement the IFactory interface. Just thought I would share in case anyone sees this issue. --- In flexcoders@yahoogroups.com, mgrayfmr [EMAIL PROTECTED

[flexcoders] Any ideas on customizing labels an gridlines in LinearAxis of LineChart ?

2007-01-23 Thread mgrayfmr
Hey Guys- I have a line chart with a numeric Y axis that I want to control the number of gridlines. Usually, this isn't a problem but sometimes lines are not drawn in even intervals. My axis data ranges are dynamic. For example, I might have a range of percentages from 88% to 100%. With an

[flexcoders] Re: Any ideas on customizing labels an gridlines in LinearAxis of LineChart ?

2007-01-23 Thread mgrayfmr
--- In flexcoders@yahoogroups.com, mgrayfmr [EMAIL PROTECTED] wrote: Hey Guys- I have a line chart with a numeric Y axis that I want to control the number of gridlines. Usually, this isn't a problem but sometimes lines are not drawn in even intervals. My axis data ranges are dynamic