Hi, Sorry this is not what iam asking. I need to create a column chart with one bar representing "high" value and one bar representing "low" value. Like this it has to continue for all the high and low values in the same key(in this case "month"). And repeat the same for all the keys.I hope you got what iam saying..Thanks..
Thanks in Advance, Poornima ________________________________ From: Tim Hoff <[email protected]> To: [email protected] Sent: Wednesday, April 1, 2009 11:48:34 PM Subject: [flexcoders] Re: Complex Charting in Flex Hi, Take a look at "Using HighLowOpenClose charts" (HLOCChart); in the help docs. -TH --- In flexcod...@yahoogro ups.com, kotha poornima <poorni_agile@ ...> wrote: > > Hi, > Can anyone suggest how can i draw a chart using this type of xml. > > <?xml version="1.0" encoding="utf- 8"?> > <test> > <stock> > <month>Aug</ month> > <close> > <High>45..87< /High> > <Low>25.66</ Low> > </close> > <close> > <High>45.77< /High> > <Low>25.96</ Low> > </close> > <open> > 25.66 > </open> > </stock> > <stock> > <month>Sep</ month> > <close> > <High>45.74< /High> > <Low>10.23</ Low> > </close> > <close> > <High>45.67< /High> > <Low>25.96</ Low> > </close> > <open> > 35.29 > </open> > </stock> > </test> > > For ever >

