[flexcoders] Re: Looking for help with Linechart and xml

2009-11-23 Thread turbo_vb
Use a second series.

-TH

--- In flexcoders@yahoogroups.com, shenji_s she...@... wrote:

 I am passing a xml in this fortmat
 Performance
  TimeSlot Time=11/1/09
  System ID=1 CPU=20
  System ID=2 CPU=22
  /TimeSlot
  TimeSlot Time=11/2/09
   System ID=1 CPU=34
   System ID=2 CPU=15
  /TimeSlot
 /Performance
 
 How do I make my linechart to have the the linechart show both system and
 the CPU for each date?
 
 Thanks so much guys I am really stuck on this





Re: [flexcoders] Re: Looking for help with Linechart and xml

2009-11-23 Thread shenji
How do I use the series to point to the CPU attribute in System? I want each
series to be based on the ID attribute and graph out by the CPU attribute.

I hope I am making sense lol

On Mon, Nov 23, 2009 at 9:23 AM, turbo_vb timh...@aol.com wrote:



 Use a second series.

 -TH


 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
 shenji_s she...@... wrote:
 
  I am passing a xml in this fortmat
  Performance
  TimeSlot Time=11/1/09
  System ID=1 CPU=20
  System ID=2 CPU=22
  /TimeSlot
  TimeSlot Time=11/2/09
  System ID=1 CPU=34
  System ID=2 CPU=15
  /TimeSlot
  /Performance
 
  How do I make my linechart to have the the linechart show both system and
  the CPU for each date?
 
  Thanks so much guys I am really stuck on this
 

  



[flexcoders] Re: Looking for help with Linechart and xml

2009-11-23 Thread turbo_vb
Ah, I see.   You're going to have to parse your base data into 2 separate 
dataProviders; one for id 1 and one for id 2.  Then use 2 series based on time 
slot and cpu.  Since the time slots match for the 2 collections, the two lines 
will align.

-TH

--- In flexcoders@yahoogroups.com, shenji she...@... wrote:

 How do I use the series to point to the CPU attribute in System? I want each
 series to be based on the ID attribute and graph out by the CPU attribute.
 
 I hope I am making sense lol
 
 On Mon, Nov 23, 2009 at 9:23 AM, turbo_vb timh...@... wrote:
 
 
 
  Use a second series.
 
  -TH
 
 
  --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
  shenji_s shenji@ wrote:
  
   I am passing a xml in this fortmat
   Performance
   TimeSlot Time=11/1/09
   System ID=1 CPU=20
   System ID=2 CPU=22
   /TimeSlot
   TimeSlot Time=11/2/09
   System ID=1 CPU=34
   System ID=2 CPU=15
   /TimeSlot
   /Performance
  
   How do I make my linechart to have the the linechart show both system and
   the CPU for each date?
  
   Thanks so much guys I am really stuck on this
  
 
   
 





Re: [flexcoders] Re: Looking for help with Linechart and xml

2009-11-23 Thread shenji
Thanks for the help turbo, can you give me a pointer on how would the
dataprovider look like? I currently is getting the xml returned back to me
through a web service. I have something like this in the code.

mx:WebService id=PerfData wsdl=http://10.20.33.34/Service1.asmx?WSDL;
showBusyCursor=true requestTimeout=60
   mx:operation name=getDataXML
   mx:request
   /mx:request
   /mx:operation


dataProvider={PerfData.getDataXML.lastResult.Performance.TimeSlot}




On Mon, Nov 23, 2009 at 12:00 PM, turbo_vb timh...@aol.com wrote:



 Ah, I see. You're going to have to parse your base data into 2 separate
 dataProviders; one for id 1 and one for id 2. Then use 2 series based on
 time slot and cpu. Since the time slots match for the 2 collections, the two
 lines will align.

 -TH


 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, shenji
 she...@... wrote:
 
  How do I use the series to point to the CPU attribute in System? I want
 each
  series to be based on the ID attribute and graph out by the CPU
 attribute.
 
  I hope I am making sense lol
 
  On Mon, Nov 23, 2009 at 9:23 AM, turbo_vb timh...@... wrote:
 
  
  
   Use a second series.
  
   -TH
  
  
   --- In flexcoders@yahoogroups.com 
   flexcoders%40yahoogroups.comflexcoders%
 40yahoogroups.com,

   shenji_s shenji@ wrote:
   
I am passing a xml in this fortmat
Performance
TimeSlot Time=11/1/09
System ID=1 CPU=20
System ID=2 CPU=22
/TimeSlot
TimeSlot Time=11/2/09
System ID=1 CPU=34
System ID=2 CPU=15
/TimeSlot
/Performance
   
How do I make my linechart to have the the linechart show both system
 and
the CPU for each date?
   
Thanks so much guys I am really stuck on this
   
  
  
  
 

  



[flexcoders] Re: Looking for help with Linechart and xml

2009-11-23 Thread turbo_vb
Don't have a lot of time right now, but basically you're looking to massage the 
data into something like this:

first collection for System ID 1:

TimeSlot Time=11/1/09 ID=1 CPU=20
TimeSlot Time=11/2/09 ID=1 CPU=34

Second collection for System ID 2:

TimeSlot Time=11/1/09 ID=2 CPU=22
TimeSlot Time=11/2/09 ID=2 CPU=15

Then use 2 series that plot Time and CPU.

-TH
--- In flexcoders@yahoogroups.com, shenji she...@... wrote:

 Thanks for the help turbo, can you give me a pointer on how would the
 dataprovider look like? I currently is getting the xml returned back to me
 through a web service. I have something like this in the code.
 
 mx:WebService id=PerfData wsdl=http://10.20.33.34/Service1.asmx?WSDL;
 showBusyCursor=true requestTimeout=60
mx:operation name=getDataXML
mx:request
/mx:request
/mx:operation
 
 
 dataProvider={PerfData.getDataXML.lastResult.Performance.TimeSlot}
 
 
 
 
 On Mon, Nov 23, 2009 at 12:00 PM, turbo_vb timh...@... wrote:
 
 
 
  Ah, I see. You're going to have to parse your base data into 2 separate
  dataProviders; one for id 1 and one for id 2. Then use 2 series based on
  time slot and cpu. Since the time slots match for the 2 collections, the two
  lines will align.
 
  -TH
 
 
  --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, shenji
  shenji@ wrote:
  
   How do I use the series to point to the CPU attribute in System? I want
  each
   series to be based on the ID attribute and graph out by the CPU
  attribute.
  
   I hope I am making sense lol
  
   On Mon, Nov 23, 2009 at 9:23 AM, turbo_vb TimHoff@ wrote:
  
   
   
Use a second series.
   
-TH
   
   
--- In flexcoders@yahoogroups.com 
flexcoders%40yahoogroups.comflexcoders%
  40yahoogroups.com,
 
shenji_s shenji@ wrote:

 I am passing a xml in this fortmat
 Performance
 TimeSlot Time=11/1/09
 System ID=1 CPU=20
 System ID=2 CPU=22
 /TimeSlot
 TimeSlot Time=11/2/09
 System ID=1 CPU=34
 System ID=2 CPU=15
 /TimeSlot
 /Performance

 How do I make my linechart to have the the linechart show both system
  and
 the CPU for each date?

 Thanks so much guys I am really stuck on this