Re: [flexcoders] Flex Charting

2009-08-17 Thread Tom Chiverton
On Monday 17 Aug 2009, Angelo Anolin wrote:
 find it.  Is it downloaded as a separate file?

Yup : http://download.macromedia.com/pub/flex/sdk/datavisualization_sdk3.3.zip

-- 
Helping to paradigmatically deploy market-growth as part of the IT team of the 
year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
?partner? to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

Re: [flexcoders] Flex Charting

2009-08-17 Thread Angelo Anolin
Thanks a lot Tom.





From: Tom Chiverton tom.chiver...@halliwells.com
To: flexcoders@yahoogroups.com
Sent: Monday, 17 August, 2009 16:46:12
Subject: Re: [flexcoders] Flex Charting

  
On Monday 17 Aug 2009, Angelo Anolin wrote:
 find it.  Is it downloaded as a separate file?

Yup : http://download. macromedia. com/pub/flex/ sdk/datavisualiz ation_sdk3. 
3.zip 

-- 
Helping to paradigmatically deploy market-growth as part of the IT team of the 
year, '09 and '08

 * * * * 

This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB. A list of 
members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners. We use the word 
?partner? to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged. If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents. If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.Halliwells. com. 



  

Re: [flexcoders] Flex charting

2009-03-18 Thread kotha poornima
Hi,
The example you gave is very good. I solved the issue. Thank you. Thanks a lot 
for the reply. And i do want to ask onething. I wanna do Flex certification, is 
it easy or hard. But i just know the basics of Flex. And what are the resources 
used And how the learning path should be for doing the certification.

Thanks in Advance,
Poornima





From: Brendan Meutzner bmeutz...@gmail.com
To: flexcoders@yahoogroups.com
Sent: Tuesday, March 17, 2009 7:36:25 PM
Subject: Re: [flexcoders] Flex charting


The bottom example at this link with the BarChart with two different typed 
series... is this what you're looking for? (assuming that instead of one 
regular and one stacked, they'd both be stacked)

http://livedocs. adobe.com/ flex/201/ html/wwhelp/ wwhimpl/common/ html/wwhelp. 
htm?context= LiveDocs_ Book_Partsfile=charts_ formatting_ 110_46.html


Brendan




On Tue, Mar 17, 2009 at 8:58 AM, Brendan Meutzner bmeutz...@gmail. com wrote:

Poornima,

I now see what you mean... sorry, didn't read carefully enough the first time 
(or look at screenshot :)...

What you're looking for doesn't fit the logic with a 100% graph you realize.  
If I understand correctly, you want a stacked column series which contains two 
items for each point on the horizontal axis... one with Expenses+Profit and one 
with Expenses+Loss. .. doing this won't cause them to add to 100%.

Am I correct in understanding your problem?  If yes, let me know and we can 
figure it out.


Brendan





On Tue, Mar 17, 2009 at 2:27 AM, kotha poornima poorni_agile@ yahoo.com wrote:

Hi,
No, I want full 100% graph with 2 colors in one bar and another 2 colors in one 
bar for the same key. I hope u got my point.

Thanks and Regards,
Poornima





From: Brendan Meutzner bmeutz...@gmail. com
To: flexcod...@yahoogro ups.com
Sent: Tuesday, March 17, 2009 11:55:35 AM

Subject: Re: [flexcoders] Flex charting


mx:ColumnChart type=stacked




On Mon, Mar 16, 2009 at 10:48 PM, kotha poornima poorni_agile@ yahoo.com 
wrote:

Hi,
Please find the code below.

?xml version=1.0?
!-- charts/BasicColumn. mxml --

  mx:Script![CDATA[
 import mx.collections. ArrayCollection;
 [Bindable]


 public var expenses:ArrayColle ction = new ArrayCollection( [
{Month:Jan, Profit:2000, loss:200, Expenses:1500} ,
{Month:Feb, Profit:1000, loss:200, Expenses:200} ,
{Month:Mar, Profit:1500, loss:200, Expenses:500}
 ]);

  ]]/mx:Script
  mx:Panel title=Column Chart
 mx:ColumnChart id=myChart dataProvider={expenses} type=100%
mx:horizontalAxis
   mx:CategoryAxis 
dataProvider={expenses} 
categoryField=Month
   /
/mx:horizontalAxis
mx:series
   mx:ColumnSeries 
xField=Month 
yField=Profit 
displayName=Profit/
   mx:ColumnSeries 
xField=Month 
yField=Expenses 
displayName=Expenses/
   
   mx:ColumnSeries 
xField=Month 
yField=loss 
displayName=Loss/
   mx:ColumnSeries 
xField=Month 
yField=Expenses 
displayName=Expenses/
/mx:series
 /mx:ColumnChart
 mx:Legend dataProvider={myChart}/
  /mx:Panel
/mx:Application


Thanks in Advance,
Poornima



 From: duraibalaji duraibalaji@ yahoo.com
To: flexcod...@yahoogro ups.com

Sent: Monday, March 16, 2009 8:00:52 PM
Subject: Re: [flexcoders] Flex charting




Hi Poorni,

Can you post the code, 
let me try to modify the same and send it to you.

Regards
DB

kotha poornima wrote:
 
 Hi All,
 
 I have one arraycollection like this:
 

  public var expenses:ArrayColle ction = new ArrayCollection( [

 {Month:Jan , Profit:2000, loss:200, Expenses:1500} ,
 {Month:Feb , Profit:1000, loss:200, Expenses:200} ,
 {Month:Mar , Profit:1500, loss:200, Expenses:500}
  ]);
 
 With this iam drawing a column chart.
 so i added two column series one for profit and one for expenses. So i got
 output like for the first key two lines came orange and green one for
 profit and one for expenses.
 
 But i want to combine these two lines so i put type=100%
 With this iam getting green and orange in the same line with values
 adjusted to 100%.
 
 Up to this its working fine.
 But now i want another series for the same key with loss and expenses.
 However if i add these two series to the chart iam still getting one line
 with 4 colors. But i want profit and expenses with type=100% in one line
 and loss and expenses in one line with type=100% for one key.(Shown in
 the attachment type1.bmp) . Please help me guys!!!
 
 Thanks in Advance,
 Poornima
 
 
 
 
 
 

-- 

View this message in context: http://www.nabble. com/Flex- charting- 
tp22534734p22539 460.html

Sent from the FlexCoders mailing

Re: [flexcoders] Flex charting

2009-03-17 Thread Brendan Meutzner
mx:ColumnChart type=stacked


On Mon, Mar 16, 2009 at 10:48 PM, kotha poornima poorni_ag...@yahoo.comwrote:

   Hi,
 Please find the code below.

 ?xml version=1.0?
 !-- charts/BasicColumn.mxml --

   mx:Script![CDATA[
  import mx.collections.ArrayCollection;
  [Bindable]
  public var expenses:ArrayCollection = new ArrayCollection([
 {Month:Jan, Profit:2000, loss:200, Expenses:1500},
 {Month:Feb, Profit:1000, loss:200, Expenses:200},
 {Month:Mar, Profit:1500, loss:200, Expenses:500}
  ]);
   ]]/mx:Script
   mx:Panel title=Column Chart
  mx:ColumnChart id=myChart dataProvider={expenses} type=100%
 mx:horizontalAxis
mx:CategoryAxis
 dataProvider={expenses}
 categoryField=Month
/
 /mx:horizontalAxis
 mx:series
mx:ColumnSeries
 xField=Month
 yField=Profit
 displayName=Profit/
mx:ColumnSeries
 xField=Month
 yField=Expenses
 displayName=Expenses/

mx:ColumnSeries
 xField=Month
 yField=loss
 displayName=Loss/
mx:ColumnSeries
 xField=Month
 yField=Expenses
 displayName=Expenses/
 /mx:series
  /mx:ColumnChart
  mx:Legend dataProvider={myChart}/
   /mx:Panel
 /mx:Application

 Thanks in Advance,
 Poornima
 --
 *From:* duraibalaji duraibal...@yahoo.com
 *To:* flexcoders@yahoogroups.com
 *Sent:* Monday, March 16, 2009 8:00:52 PM
 *Subject:* Re: [flexcoders] Flex charting


 Hi Poorni,

 Can you post the code,
 let me try to modify the same and send it to you.

 Regards
 DB

 kotha poornima wrote:
 
  Hi All,
 
  I have one arraycollection like this:
 
  public var expenses:ArrayColle ction = new ArrayCollection( [
  {Month:Jan , Profit:2000, loss:200, Expenses:1500} ,
  {Month:Feb , Profit:1000, loss:200, Expenses:200} ,
  {Month:Mar , Profit:1500, loss:200, Expenses:500}
  ]);
 
  With this iam drawing a column chart.
  so i added two column series one for profit and one for expenses. So i
 got
  output like for the first key two lines came orange and green one for
  profit and one for expenses.
 
  But i want to combine these two lines so i put type=100%
  With this iam getting green and orange in the same line with values
  adjusted to 100%.
 
  Up to this its working fine.
  But now i want another series for the same key with loss and expenses.
  However if i add these two series to the chart iam still getting one line
  with 4 colors. But i want profit and expenses with type=100% in one
 line
  and loss and expenses in one line with type=100% for one key.(Shown in
  the attachment type1.bmp) . Please help me guys!!!
 
  Thanks in Advance,
  Poornima
 
 
 
 
 
 

 --
 View this message in context: http://www.nabble. com/Flex- charting-
 tp22534734p22539 
 460.htmlhttp://www.nabble.com/Flex-charting-tp22534734p22539460.html
 Sent from the FlexCoders mailing list archive at Nabble.com.


  




-- 
Brendan Meutzner
http://www.meutzner.com/blog/
http://www.riajobs.com


Re: [flexcoders] Flex charting

2009-03-17 Thread kotha poornima
Hi,
No, I want full 100% graph with 2 colors in one bar and another 2 colors in one 
bar for the same key. I hope u got my point.

Thanks and Regards,
Poornima





From: Brendan Meutzner bmeutz...@gmail.com
To: flexcoders@yahoogroups.com
Sent: Tuesday, March 17, 2009 11:55:35 AM
Subject: Re: [flexcoders] Flex charting


mx:ColumnChart type=stacked




On Mon, Mar 16, 2009 at 10:48 PM, kotha poornima poorni_agile@ yahoo.com 
wrote:

Hi,
Please find the code below.

?xml version=1.0?
!-- charts/BasicColumn. mxml --

  mx:Script![CDATA[
 import mx.collections. ArrayCollection;
 [Bindable]

 public var expenses:ArrayColle ction = new ArrayCollection( [
{Month:Jan, Profit:2000, loss:200, Expenses:1500} ,
{Month:Feb, Profit:1000, loss:200, Expenses:200} ,
{Month:Mar, Profit:1500, loss:200, Expenses:500}
 ]);
  ]]/mx:Script
  mx:Panel title=Column Chart
 mx:ColumnChart id=myChart dataProvider={expenses} type=100%
mx:horizontalAxis
   mx:CategoryAxis 
dataProvider={expenses} 
categoryField=Month
   /
/mx:horizontalAxis
mx:series
   mx:ColumnSeries 
xField=Month 
yField=Profit 
displayName=Profit/
   mx:ColumnSeries 
xField=Month 
yField=Expenses 
displayName=Expenses/
   
   mx:ColumnSeries 
xField=Month 
yField=loss 
displayName=Loss/
   mx:ColumnSeries 
xField=Month 
yField=Expenses 
displayName=Expenses/
/mx:series
 /mx:ColumnChart
 mx:Legend dataProvider={myChart}/
  /mx:Panel
/mx:Application


Thanks in Advance,
Poornima



From: duraibalaji duraibalaji@ yahoo.com
To: flexcod...@yahoogro ups.com
Sent: Monday, March 16, 2009 8:00:52 PM
Subject: Re: [flexcoders] Flex charting



Hi Poorni,

Can you post the code, 
let me try to modify the same and send it to you.

Regards
DB

kotha poornima wrote:
 
 Hi All,
 
 I have one arraycollection like this:
 

  public var expenses:ArrayColle ction = new ArrayCollection( [

 {Month:Jan , Profit:2000, loss:200, Expenses:1500} ,
 {Month:Feb , Profit:1000, loss:200, Expenses:200} ,
 {Month:Mar , Profit:1500, loss:200, Expenses:500}
  ]);
 
 With this iam drawing a column chart.
 so i added two column series one for profit and one for expenses. So i got
 output like for the first key two lines came orange and green one for
 profit and one for expenses.
 
 But i want to combine these two lines so i put type=100%
 With this iam getting green and orange in the same line with values
 adjusted to 100%.
 
 Up to this its working fine.
 But now i want another series for the same key with loss and expenses.
 However if i add these two series to the chart iam still getting one line
 with 4 colors. But i want profit and expenses with type=100% in one line
 and loss and expenses in one line with type=100% for one key.(Shown in
 the attachment type1.bmp) . Please help me guys!!!
 
 Thanks in Advance,
 Poornima
 
 
 
 
 
 

-- 

View this message in context: http://www.nabble. com/Flex- charting- 
tp22534734p22539 460.html

Sent from the FlexCoders mailing list archive at Nabble.com.





-- 
Brendan Meutzner
http://www.meutzner.com/blog/
http://www.riajobs. com

   


  

Re: [flexcoders] Flex charting

2009-03-17 Thread Brendan Meutzner
Poornima,
I now see what you mean... sorry, didn't read carefully enough the first
time (or look at screenshot :)...

What you're looking for doesn't fit the logic with a 100% graph you realize.
 If I understand correctly, you want a stacked column series which contains
two items for each point on the horizontal axis... one with Expenses+Profit
and one with Expenses+Loss... doing this won't cause them to add to 100%.

Am I correct in understanding your problem?  If yes, let me know and we can
figure it out.


Brendan



On Tue, Mar 17, 2009 at 2:27 AM, kotha poornima poorni_ag...@yahoo.comwrote:

   Hi,
 No, I want full 100% graph with 2 colors in one bar and another 2 colors in
 one bar for the same key. I hope u got my point.

 Thanks and Regards,
 Poornima

 --
 *From:* Brendan Meutzner bmeutz...@gmail.com
 *To:* flexcoders@yahoogroups.com
 *Sent:* Tuesday, March 17, 2009 11:55:35 AM
 *Subject:* Re: [flexcoders] Flex charting

  mx:ColumnChart type=stacked



 On Mon, Mar 16, 2009 at 10:48 PM, kotha poornima poorni_agile@ 
 yahoo.compoorni_ag...@yahoo.com
  wrote:

   Hi,
 Please find the code below.

 ?xml version=1.0?
 !-- charts/BasicColumn. mxml --

   mx:Script![CDATA[
  import mx.collections. ArrayCollection;
  [Bindable]

  public var expenses:ArrayColle ction = new ArrayCollection( [
 {Month:Jan, Profit:2000, loss:200, Expenses:1500} ,
 {Month:Feb, Profit:1000, loss:200, Expenses:200} ,
 {Month:Mar, Profit:1500, loss:200, Expenses:500}
  ]);
   ]]/mx:Script
   mx:Panel title=Column Chart
  mx:ColumnChart id=myChart dataProvider={expenses} type=100%
 mx:horizontalAxis
mx:CategoryAxis
 dataProvider={expenses}
 categoryField=Month
/
 /mx:horizontalAxis
 mx:series
mx:ColumnSeries
 xField=Month
 yField=Profit
 displayName=Profit/
mx:ColumnSeries
 xField=Month
 yField=Expenses
 displayName=Expenses/

mx:ColumnSeries
 xField=Month
 yField=loss
 displayName=Loss/
mx:ColumnSeries
 xField=Month
 yField=Expenses
 displayName=Expenses/
 /mx:series
  /mx:ColumnChart
  mx:Legend dataProvider={myChart}/
   /mx:Panel
 /mx:Application

 Thanks in Advance,
 Poornima
 --
 *From:* duraibalaji duraibalaji@ yahoo.com duraibal...@yahoo.com
 *To:* flexcod...@yahoogro ups.com flexcoders@yahoogroups.com

 *Sent:* Monday, March 16, 2009 8:00:52 PM
 *Subject:* Re: [flexcoders] Flex charting


 Hi Poorni,

 Can you post the code,
 let me try to modify the same and send it to you.

 Regards
 DB

 kotha poornima wrote:
 
  Hi All,
 
  I have one arraycollection like this:
 
  public var expenses:ArrayColle ction = new ArrayCollection( [
  {Month:Jan , Profit:2000, loss:200, Expenses:1500} ,
  {Month:Feb , Profit:1000, loss:200, Expenses:200} ,
  {Month:Mar , Profit:1500, loss:200, Expenses:500}
  ]);
 
  With this iam drawing a column chart.
  so i added two column series one for profit and one for expenses. So i
 got
  output like for the first key two lines came orange and green one for
  profit and one for expenses.
 
  But i want to combine these two lines so i put type=100%
  With this iam getting green and orange in the same line with values
  adjusted to 100%.
 
  Up to this its working fine.
  But now i want another series for the same key with loss and expenses.
  However if i add these two series to the chart iam still getting one
 line
  with 4 colors. But i want profit and expenses with type=100% in one
 line
  and loss and expenses in one line with type=100% for one key.(Shown in
  the attachment type1.bmp) . Please help me guys!!!
 
  Thanks in Advance,
  Poornima
 
 
 
 
 
 

 --
 View this message in context: http://www.nabble. com/Flex- charting-
 tp22534734p22539 
 460.htmlhttp://www.nabble.com/Flex-charting-tp22534734p22539460.html
 Sent from the FlexCoders mailing list archive at Nabble.com.





 --
 Brendan Meutzner
 http://www.meutzner.com/blog/
 http://www.riajobs. com http://www.riajobs.com

  




-- 
Brendan Meutzner
http://www.meutzner.com/blog/
http://www.riajobs.com


Re: [flexcoders] Flex charting

2009-03-17 Thread Brendan Meutzner
The bottom example at this link with the BarChart with two different typed
series... is this what you're looking for? (assuming that instead of one
regular and one stacked, they'd both be stacked)
http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Partsfile=charts_formatting_110_46.html


Brendan



On Tue, Mar 17, 2009 at 8:58 AM, Brendan Meutzner bmeutz...@gmail.comwrote:

 Poornima,
 I now see what you mean... sorry, didn't read carefully enough the first
 time (or look at screenshot :)...

 What you're looking for doesn't fit the logic with a 100% graph you
 realize.  If I understand correctly, you want a stacked column series which
 contains two items for each point on the horizontal axis... one with
 Expenses+Profit and one with Expenses+Loss... doing this won't cause them to
 add to 100%.

 Am I correct in understanding your problem?  If yes, let me know and we can
 figure it out.


 Brendan



 On Tue, Mar 17, 2009 at 2:27 AM, kotha poornima poorni_ag...@yahoo.comwrote:

   Hi,
 No, I want full 100% graph with 2 colors in one bar and another 2 colors
 in one bar for the same key. I hope u got my point.

 Thanks and Regards,
 Poornima

 --
 *From:* Brendan Meutzner bmeutz...@gmail.com
 *To:* flexcoders@yahoogroups.com
 *Sent:* Tuesday, March 17, 2009 11:55:35 AM
 *Subject:* Re: [flexcoders] Flex charting

  mx:ColumnChart type=stacked



 On Mon, Mar 16, 2009 at 10:48 PM, kotha poornima poorni_agile@ 
 yahoo.compoorni_ag...@yahoo.com
  wrote:

   Hi,
 Please find the code below.

 ?xml version=1.0?
 !-- charts/BasicColumn. mxml --

   mx:Script![CDATA[
  import mx.collections. ArrayCollection;
  [Bindable]

   public var expenses:ArrayColle ction = new ArrayCollection( [
 {Month:Jan, Profit:2000, loss:200, Expenses:1500} ,
 {Month:Feb, Profit:1000, loss:200, Expenses:200} ,
 {Month:Mar, Profit:1500, loss:200, Expenses:500}
  ]);
   ]]/mx:Script
   mx:Panel title=Column Chart
  mx:ColumnChart id=myChart dataProvider={expenses} type=100%
 mx:horizontalAxis
mx:CategoryAxis
 dataProvider={expenses}
 categoryField=Month
/
 /mx:horizontalAxis
 mx:series
mx:ColumnSeries
 xField=Month
 yField=Profit
 displayName=Profit/
mx:ColumnSeries
 xField=Month
 yField=Expenses
 displayName=Expenses/

mx:ColumnSeries
 xField=Month
 yField=loss
 displayName=Loss/
mx:ColumnSeries
 xField=Month
 yField=Expenses
 displayName=Expenses/
 /mx:series
  /mx:ColumnChart
  mx:Legend dataProvider={myChart}/
   /mx:Panel
 /mx:Application

 Thanks in Advance,
 Poornima
 --
 *From:* duraibalaji duraibalaji@ yahoo.com duraibal...@yahoo.com
 *To:* flexcod...@yahoogro ups.com flexcoders@yahoogroups.com

 *Sent:* Monday, March 16, 2009 8:00:52 PM
 *Subject:* Re: [flexcoders] Flex charting


 Hi Poorni,

 Can you post the code,
 let me try to modify the same and send it to you.

 Regards
 DB

 kotha poornima wrote:
 
  Hi All,
 
  I have one arraycollection like this:
 
  public var expenses:ArrayColle ction = new ArrayCollection( [
  {Month:Jan , Profit:2000, loss:200, Expenses:1500} ,
  {Month:Feb , Profit:1000, loss:200, Expenses:200} ,
  {Month:Mar , Profit:1500, loss:200, Expenses:500}
  ]);
 
  With this iam drawing a column chart.
  so i added two column series one for profit and one for expenses. So i
 got
  output like for the first key two lines came orange and green one for
  profit and one for expenses.
 
  But i want to combine these two lines so i put type=100%
  With this iam getting green and orange in the same line with values
  adjusted to 100%.
 
  Up to this its working fine.
  But now i want another series for the same key with loss and expenses.
  However if i add these two series to the chart iam still getting one
 line
  with 4 colors. But i want profit and expenses with type=100% in one
 line
  and loss and expenses in one line with type=100% for one key.(Shown
 in
  the attachment type1.bmp) . Please help me guys!!!
 
  Thanks in Advance,
  Poornima
 
 
 
 
 
 

 --
 View this message in context: http://www.nabble. com/Flex- charting-
 tp22534734p22539 
 460.htmlhttp://www.nabble.com/Flex-charting-tp22534734p22539460.html
 Sent from the FlexCoders mailing list archive at Nabble.com.





 --
 Brendan Meutzner
 http://www.meutzner.com/blog/
 http://www.riajobs. com http://www.riajobs.com

  




 --
 Brendan Meutzner
 http://www.meutzner.com/blog/
 http://www.riajobs.com




-- 
Brendan Meutzner
http://www.meutzner.com/blog/
http://www.riajobs.com


Re: [flexcoders] Flex charting

2009-03-16 Thread duraibalaji

Hi Poorni,

Can you post the code, 
let me try to modify the same and send it to you.

Regards
DB


kotha poornima wrote:
 
 Hi All,
 
 I have one arraycollection like this:
 
  public var expenses:ArrayCollection = new ArrayCollection([
 {Month:Jan, Profit:2000, loss:200, Expenses:1500},
 {Month:Feb, Profit:1000, loss:200, Expenses:200},
 {Month:Mar, Profit:1500, loss:200, Expenses:500}
  ]);
 
 With this iam drawing a column chart.
 so i added two column series one for profit and one for expenses. So i got
 output like for the first key two lines came orange and green one for
 profit and one for expenses.
 
 But i want to combine these two lines so i put type=100%
 With this iam getting green and orange in the same line with values
 adjusted to 100%.
 
 Up to this its working fine.
 But now i want another series for the same key with loss and expenses.
 However if i add these two series to the chart iam still getting one line
 with 4 colors. But i want profit and expenses with type=100% in one line
 and loss and expenses in one line with type=100% for one key.(Shown in
 the attachment type1.bmp). Please help me guys!!!
 
 Thanks in Advance,
 Poornima
 
 
 
   
  
 

-- 
View this message in context: 
http://www.nabble.com/Flex-charting-tp22534734p22539460.html
Sent from the FlexCoders mailing list archive at Nabble.com.



Re: [flexcoders] Flex charting

2009-03-16 Thread kotha poornima
Hi,
Please find the code below.

?xml version=1.0?
!-- charts/BasicColumn.mxml --

  mx:Script![CDATA[
 import mx.collections.ArrayCollection;
 [Bindable]
 public var expenses:ArrayCollection = new ArrayCollection([
{Month:Jan, Profit:2000, loss:200, Expenses:1500},
{Month:Feb, Profit:1000, loss:200, Expenses:200},
{Month:Mar, Profit:1500, loss:200, Expenses:500}
 ]);
  ]]/mx:Script
  mx:Panel title=Column Chart
 mx:ColumnChart id=myChart dataProvider={expenses} type=100%
mx:horizontalAxis
   mx:CategoryAxis 
dataProvider={expenses} 
categoryField=Month
   /
/mx:horizontalAxis
mx:series
   mx:ColumnSeries 
xField=Month 
yField=Profit 
displayName=Profit/
   mx:ColumnSeries 
xField=Month 
yField=Expenses 
displayName=Expenses/
   
   mx:ColumnSeries 
xField=Month 
yField=loss 
displayName=Loss/
   mx:ColumnSeries 
xField=Month 
yField=Expenses 
displayName=Expenses/
/mx:series
 /mx:ColumnChart
 mx:Legend dataProvider={myChart}/
  /mx:Panel
/mx:Application


Thanks in Advance,
Poornima



From: duraibalaji duraibal...@yahoo.com
To: flexcoders@yahoogroups.com
Sent: Monday, March 16, 2009 8:00:52 PM
Subject: Re: [flexcoders] Flex charting



Hi Poorni,

Can you post the code, 
let me try to modify the same and send it to you.

Regards
DB

kotha poornima wrote:
 
 Hi All,
 
 I have one arraycollection like this:
 
  public var expenses:ArrayColle ction = new ArrayCollection( [
 {Month:Jan , Profit:2000, loss:200, Expenses:1500} ,
 {Month:Feb , Profit:1000, loss:200, Expenses:200} ,
 {Month:Mar , Profit:1500, loss:200, Expenses:500}
  ]);
 
 With this iam drawing a column chart.
 so i added two column series one for profit and one for expenses. So i got
 output like for the first key two lines came orange and green one for
 profit and one for expenses.
 
 But i want to combine these two lines so i put type=100%
 With this iam getting green and orange in the same line with values
 adjusted to 100%.
 
 Up to this its working fine.
 But now i want another series for the same key with loss and expenses.
 However if i add these two series to the chart iam still getting one line
 with 4 colors. But i want profit and expenses with type=100% in one line
 and loss and expenses in one line with type=100% for one key.(Shown in
 the attachment type1.bmp) . Please help me guys!!!
 
 Thanks in Advance,
 Poornima
 
 
 
 
 
 

-- 
View this message in context: http://www.nabble. com/Flex- charting- 
tp22534734p22539 460.html
Sent from the FlexCoders mailing list archive at Nabble.com.


   


  

Re: [flexcoders] FLEX CHARTING

2008-12-30 Thread Richard Rodseth
See Strtucture of Chart Data in the Adobe documentation:

http://livedocs.adobe.com/flex/3/html/charts_intro_8.html

I reached this by Googling flex chart datafunction

On Mon, Dec 29, 2008 at 11:08 PM, kotha poornima poorni_ag...@yahoo.comwrote:

   Hi Richard,
 Thanks for the replies.Can you please give me an example??

 Thanks
 Poornima
 --
 *From:* Richard Rodseth rrods...@gmail.com
 *To:* flexcoders@yahoogroups.com
 *Sent:* Tuesday, December 30, 2008 12:14:19 PM
 *Subject:* Re: [flexcoders] FLEX CHARTING

  But you can use the  dataFunction property to set a function that does
 calculations on the fly.

 On Mon, Dec 29, 2008 at 10:28 PM, Brendan Meutzner bmeutz...@gmail. 
 combmeutz...@gmail.com
  wrote:

   yField is just a reference to a property or node in your dataset... in
 your case uptime... if you want to do a calculation, you will have to
 perform that on your dataset prior to plotting in the ColumnChart. .. you
 can't perform a calculation on the field reference as you're trying to do.


 Brendan



 On Tue, Dec 30, 2008 at 12:24 AM, kotha poornima poorni_agile@ 
 yahoo.compoorni_ag...@yahoo.com
  wrote:

   Hi All,
 I am using Column chart in my project. Here i need to plot uptime and
 downtime of the system using column chart. Uptime data will come from the
 database like this:
 StatusGraph
 data
   date10/date
   uptime0/uptime
 /data
 data
   date11/date
   uptime1/uptime
 /data
 data
   date12/date
   uptime2/uptime
 /data
 data
   date07/date
   uptime2/uptime
 /data
 data
   date07/date
   uptime2/uptime
 /data
 data
   date18/date
   uptime0/uptime
 /data
   /StatusGraph
  I am not getting any downtime information from the database. Doubt i
 have here is can i do any calculations before plotting the graph.
  I tried like this. But its not working.
 mx:ColumnChart id=chart
 dataProvider={resultXML.System[ 0].StatusGraph. data}
 type=100% width=500 height=250 showDataTips=true
 mx:series
 mx:ColumnSeries yField=uptime /
 mx:ColumnSeries yField=100-uptime / -- Doubt
 /mx:series
 mx:horizontalAxis
 mx:CategoryAxis categoryField=date /
 /mx:horizontalAxis
 /mx:ColumnChart
 SO here iam using yfield as 100-uptime to calculate downtime. But its
 not displaying any data. Can any one help me regarding this.

 Thanks and Regards,
 Poornima




 --
 Brendan Meutzner
 http://www.meutzner .com/blog/ http://www.meutzner.com/blog/



  



Re: [flexcoders] FLEX CHARTING

2008-12-29 Thread Brendan Meutzner
yField is just a reference to a property or node in your dataset... in your
case uptime... if you want to do a calculation, you will have to perform
that on your dataset prior to plotting in the ColumnChart... you can't
perform a calculation on the field reference as you're trying to do.

Brendan



On Tue, Dec 30, 2008 at 12:24 AM, kotha poornima poorni_ag...@yahoo.comwrote:

   Hi All,
 I am using Column chart in my project. Here i need to plot uptime and
 downtime of the system using column chart. Uptime data will come from the
 database like this:
 StatusGraph
 data
   date10/date
   uptime0/uptime
 /data
 data
   date11/date
   uptime1/uptime
 /data
 data
   date12/date
   uptime2/uptime
 /data
 data
   date07/date
   uptime2/uptime
 /data
 data
   date07/date
   uptime2/uptime
 /data
 data
   date18/date
   uptime0/uptime
 /data
   /StatusGraph
  I am not getting any downtime information from the database. Doubt i have
 here is can i do any calculations before plotting the graph.
  I tried like this. But its not working.
 mx:ColumnChart id=chart
 dataProvider={resultXML.System[0].StatusGraph.data}
 type=100% width=500 height=250 showDataTips=true
 mx:series
 mx:ColumnSeries yField=uptime /
 mx:ColumnSeries yField=100-uptime / -- Doubt
 /mx:series
 mx:horizontalAxis
 mx:CategoryAxis categoryField=date /
 /mx:horizontalAxis
 /mx:ColumnChart
 SO here iam using yfield as 100-uptime to calculate downtime. But its not
 displaying any data. Can any one help me regarding this.

 Thanks and Regards,
 Poornima

  




-- 
Brendan Meutzner
http://www.meutzner.com/blog/


Re: [flexcoders] FLEX CHARTING

2008-12-29 Thread Richard Rodseth
But you can use the  dataFunction property to set a function that does
calculations on the fly.

On Mon, Dec 29, 2008 at 10:28 PM, Brendan Meutzner bmeutz...@gmail.comwrote:

   yField is just a reference to a property or node in your dataset... in
 your case uptime... if you want to do a calculation, you will have to
 perform that on your dataset prior to plotting in the ColumnChart... you
 can't perform a calculation on the field reference as you're trying to do.


 Brendan



 On Tue, Dec 30, 2008 at 12:24 AM, kotha poornima 
 poorni_ag...@yahoo.comwrote:

   Hi All,
 I am using Column chart in my project. Here i need to plot uptime and
 downtime of the system using column chart. Uptime data will come from the
 database like this:
 StatusGraph
 data
   date10/date
   uptime0/uptime
 /data
 data
   date11/date
   uptime1/uptime
 /data
 data
   date12/date
   uptime2/uptime
 /data
 data
   date07/date
   uptime2/uptime
 /data
 data
   date07/date
   uptime2/uptime
 /data
 data
   date18/date
   uptime0/uptime
 /data
   /StatusGraph
  I am not getting any downtime information from the database. Doubt i have
 here is can i do any calculations before plotting the graph.
  I tried like this. But its not working.
 mx:ColumnChart id=chart
 dataProvider={resultXML.System[0].StatusGraph.data}
 type=100% width=500 height=250 showDataTips=true
 mx:series
 mx:ColumnSeries yField=uptime /
 mx:ColumnSeries yField=100-uptime / -- Doubt
 /mx:series
 mx:horizontalAxis
 mx:CategoryAxis categoryField=date /
 /mx:horizontalAxis
 /mx:ColumnChart
 SO here iam using yfield as 100-uptime to calculate downtime. But its not
 displaying any data. Can any one help me regarding this.

 Thanks and Regards,
 Poornima




 --
 Brendan Meutzner
 http://www.meutzner.com/blog/
  



Re: [flexcoders] FLEX CHARTING

2008-12-29 Thread kotha poornima
Hi Richard,
Thanks for the replies.Can you please give me an example??


Thanks
Poornima



From: Richard Rodseth rrods...@gmail.com
To: flexcoders@yahoogroups.com
Sent: Tuesday, December 30, 2008 12:14:19 PM
Subject: Re: [flexcoders] FLEX CHARTING


But you can use the  dataFunction property to set a function that does 
calculations on the fly.


On Mon, Dec 29, 2008 at 10:28 PM, Brendan Meutzner bmeutz...@gmail. com wrote:

yField is just a reference to a property or node in your dataset... in your 
case uptime... if you want to do a calculation, you will have to perform that 
on your dataset prior to plotting in the ColumnChart. .. you can't perform a 
calculation on the field reference as you're trying to do.


Brendan





On Tue, Dec 30, 2008 at 12:24 AM, kotha poornima poorni_agile@ yahoo.com 
wrote:

Hi All,
I am using Column chart in my project. Here i need to plot uptime and downtime 
of the system using column chart. Uptime data will come from the database like 
this:
StatusGraph
data
  date10/date
  uptime0/uptime
/data
data
  date11/date
  uptime1/uptime
/data
data
  date12/date
  uptime2/uptime
/data
data
  date07/date
  uptime2/uptime
/data
data
  date07/date
  uptime2/uptime
/data
data
  date18/date
  uptime0/uptime
/data
  /StatusGraph
 I am not getting any downtime information from the database. Doubt i have here 
is can i do any calculations before plotting the graph.
 I tried like this. But its not working.
mx:ColumnChart id=chart dataProvider={resultXML.System[ 
0].StatusGraph. data} type=100% width=500 height=250 
showDataTips=true
mx:series
mx:ColumnSeries yField=uptime /
   mx:ColumnSeries yField=100-uptime / -- Doubt
/mx:series
mx:horizontalAxis
mx:CategoryAxis categoryField=date /
/mx:horizontalAxis
/mx:ColumnChart
SO here iam using yfield as 100-uptime to calculate downtime. But its not 
displaying any data. Can any one help me regarding this.

Thanks and Regards,
Poornima

 


-- 
Brendan Meutzner
http://www.meutzner .com/blog/
 



  

Re: [flexcoders] Flex Charting Issue with Data Effects

2008-09-13 Thread Pan Troglodytes
Okay, I think I figured it out.  I had the same problem in the 3.1 SDK.  You
were definitely being stumped because you didn't have the Pro source code.
I went ahead and created a bug and entered the reason it's broken and how
you can go about working around it.  If you vote for the issue, there's more
of a chance it will be fixed in a future SDK release.

On Thu, Sep 4, 2008 at 8:03 AM, omnautic [EMAIL PROTECTED] wrote:

   Hi,

 I'm hoping someone can help me out.

 I seem to have found a bug with the Flex 3 charting components. Since
 the these components are not open source, perhaps this is the best way
 to get a quick response. I've searched high and low and have found
 nothing relating to my problem.

 So, here goes:
 I'm trying to use the SeriesInterpolate effect with some ColumnSeries.
 The documented events are not being triggered. effectEnd is triggered,
 actually. But effectStart, tweenBegin, tweenEnd, tweenUpdate are not.

 I tried the other data effects: SeriesSlide and SeriesZoom as well.
 They both failed to trigger the above events also.

 The documentation states that the effectStart is triggered by a
 showData event, but I don't see that event documented (or I'd try to
 snag it, too).

 Have there been any updates to the charting components since Flex 3
 was released? Maybe these issues were already addressed? I checked the
 downloads and see an update to the SDK, but nothing on the charting
 components.

 Another little bit about what I'm really trying to do:
 I'd like to update the label, too, as the column expands/contracts.
 The data label retains the old value until the column tween is
 complete, then it updates to the new value. An option to update the
 label for the SeriesInterpolate effect would be really nice. At the
 very least, an option to hide the label while tweening, perhaps?

 At this point, I think I'm going to have the programmatically change
 the values with a Timer event, in conjunction with the data effect.

 Thanks a lot,
 K

  




-- 
Jason


Re: [flexcoders] Flex Charting Issue with Data Effects

2008-09-13 Thread Pan Troglodytes
Ooops, the bug report is at:
https://bugs.adobe.com/jira/browse/FLEXDMV-1879

On Sat, Sep 13, 2008 at 2:12 PM, Pan Troglodytes [EMAIL PROTECTED]wrote:

 Okay, I think I figured it out.  I had the same problem in the 3.1 SDK.
 You were definitely being stumped because you didn't have the Pro source
 code.  I went ahead and created a bug and entered the reason it's broken and
 how you can go about working around it.  If you vote for the issue, there's
 more of a chance it will be fixed in a future SDK release.


 On Thu, Sep 4, 2008 at 8:03 AM, omnautic [EMAIL PROTECTED] wrote:

   Hi,

 I'm hoping someone can help me out.

 I seem to have found a bug with the Flex 3 charting components. Since
 the these components are not open source, perhaps this is the best way
 to get a quick response. I've searched high and low and have found
 nothing relating to my problem.

 So, here goes:
 I'm trying to use the SeriesInterpolate effect with some ColumnSeries.
 The documented events are not being triggered. effectEnd is triggered,
 actually. But effectStart, tweenBegin, tweenEnd, tweenUpdate are not.

 I tried the other data effects: SeriesSlide and SeriesZoom as well.
 They both failed to trigger the above events also.

 The documentation states that the effectStart is triggered by a
 showData event, but I don't see that event documented (or I'd try to
 snag it, too).

 Have there been any updates to the charting components since Flex 3
 was released? Maybe these issues were already addressed? I checked the
 downloads and see an update to the SDK, but nothing on the charting
 components.

 Another little bit about what I'm really trying to do:
 I'd like to update the label, too, as the column expands/contracts.
 The data label retains the old value until the column tween is
 complete, then it updates to the new value. An option to update the
 label for the SeriesInterpolate effect would be really nice. At the
 very least, an option to hide the label while tweening, perhaps?

 At this point, I think I'm going to have the programmatically change
 the values with a Timer event, in conjunction with the data effect.

 Thanks a lot,
 K

  




 --
 Jason




-- 
Jason


RE: [flexcoders] Flex Charting with MySQL datetime field

2008-02-24 Thread Brad Bueche
I think you should be able to use a .string function and just (one way
of doing it) match the positions (in the string) of the time (since it
will always be the same -- give your formatting).
 
I pull data from an oracle database.  I do it via php though so I have
php do the string parsing before it puts it into an xml file. You also
have the option of changing the formatting on your database query so
that it only returns the time (and not the date) (i.e. hh:mm:ss)
 
brad

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of donvoltz
Sent: Saturday, February 23, 2008 10:45 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Charting with MySQL datetime field



Hello Everyone,

I have been digging into the flex charting components with nice
success. Currently I have extracted a large dataset from a mysql
database and would like to plot a line graph with the y-axis being a
value and the x-axis being a time. 

Can anyone point me in the right direction to accomplish this, the
time field is returned as an mysql datetime field (ie MM-DD-
hh:mm:ss) and I would like to have the data displayed only as the time
since all of the dates are the same

Thanks in advance for any direction on this

Don



 



Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-22 Thread Eduardo Dias
we know that itext can generate the pdf in the server, but and about the
image? are there any way to generate an image from flex chart in the
server-side?



On Thu, Feb 21, 2008 at 6:31 AM, Paul Hastings [EMAIL PROTECTED]
wrote:

We're using java

 maybe have a look at iText.
  



RE: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-22 Thread Carl-Alexandre Malartre
Your server software could start an instance of an Air app (with some
command line parameters). That Air app could use an ActionScript 3 JPEG or
PNG encoder and output it to a folder specified in the parameters.

 

Thanks,
Carl

Carl-Alexandre Malartre
Directeur de projets, Scolab
514-528-8066, 1-888-528-8066

Besoin d'aide en maths?
www.Netmaths.net

 

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Eduardo Dias
Sent: Friday, February 22, 2008 8:49 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]Flex Charting - Export to PDF and Images

 

we know that itext can generate the pdf in the server, but and about the
image? are there any way to generate an image from flex chart in the
server-side?




On Thu, Feb 21, 2008 at 6:31 AM, Paul Hastings [EMAIL PROTECTED]
wrote:

 We're using java

maybe have a look at iText.

 

 



Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-21 Thread Paul Hastings
 We're using java

maybe have a look at iText.


Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-20 Thread Eduardo Dias
We're using java

On Feb 20, 2008 5:41 PM, Derrick Anderson [EMAIL PROTECTED]
wrote:

   what do you have available server side?  i use CF and what i would do is
 setup a CF scheduled task to query the data, generate the reports in
 coldfusion and mail them as attachments.

 i wouldn't even involve flex in this matter...


 On Wed, Feb 20, 2008 at 3:27 PM, Eduardo Dias [EMAIL PROTECTED]
 wrote:

Ok, We know that we can generate a PDF with alivePDF in the client and
  also send the data to the server to be process. However we also will need
  schedule a job that will generate an email with a pdf from charts. In this
  case we'll also need to create the services to receive and proccess the data
  and generate the email. We would avoid a lot of work using some kind of
  client-server solution and also have an integrated solution. Does someone
  knows something like this?
 
 
  On Feb 17, 2008 11:58 PM, Andrew D. Goodfellow [EMAIL PROTECTED]
  wrote:
 
 No, I don't think so. Use the AS3 Core Libraries for that.
   http://code.google.com/p/as3corelib/
  
  
   On Feb 17, 2008 7:01 AM, Eduardo Dias [EMAIL PROTECTED] wrote:
  
  Ok, and what about converting a Flex chart into a JPG or other
image? Does ALDS do that too? Or, some other Adobe tool?
   
   
On Feb 17, 2008 3:03 AM, Andrew D. Goodfellow [EMAIL PROTECTED]
wrote:
   
   We used the AlivePDF library on one of our client projects to
 generate PDF reports. I was very happy with the results.

 http://www.alivepdf.org/
 http://code.google.com/p/alivepdf/

 -Andy


 On Feb 16, 2008 9:40 PM, Eduardo Dias [EMAIL PROTECTED]
 wrote:

Is there any way with Flex Charting (or some 3rd party tool
  integrated with Flex) to output a FlexChart as a PDF or an image for
  inclusion in a report?
 


   
  
 
  



Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-20 Thread Derrick Anderson
what do you have available server side?  i use CF and what i would do is
setup a CF scheduled task to query the data, generate the reports in
coldfusion and mail them as attachments.

i wouldn't even involve flex in this matter...

On Wed, Feb 20, 2008 at 3:27 PM, Eduardo Dias [EMAIL PROTECTED] wrote:

   Ok, We know that we can generate a PDF with alivePDF in the client and
 also send the data to the server to be process. However we also will need
 schedule a job that will generate an email with a pdf from charts. In this
 case we'll also need to create the services to receive and proccess the data
 and generate the email. We would avoid a lot of work using some kind of
 client-server solution and also have an integrated solution. Does someone
 knows something like this?


 On Feb 17, 2008 11:58 PM, Andrew D. Goodfellow [EMAIL PROTECTED]
 wrote:

No, I don't think so. Use the AS3 Core Libraries for that.
  http://code.google.com/p/as3corelib/
 
 
  On Feb 17, 2008 7:01 AM, Eduardo Dias [EMAIL PROTECTED] wrote:
 
 Ok, and what about converting a Flex chart into a JPG or other
   image? Does ALDS do that too? Or, some other Adobe tool?
  
  
   On Feb 17, 2008 3:03 AM, Andrew D. Goodfellow [EMAIL PROTECTED]
   wrote:
  
  We used the AlivePDF library on one of our client projects to
generate PDF reports. I was very happy with the results.
   
http://www.alivepdf.org/
http://code.google.com/p/alivepdf/
   
-Andy
   
   
On Feb 16, 2008 9:40 PM, Eduardo Dias [EMAIL PROTECTED] wrote:
   
   Is there any way with Flex Charting (or some 3rd party tool
 integrated with Flex) to output a FlexChart as a PDF or an image for
 inclusion in a report?

   
   
  
 
  



Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-20 Thread Eduardo Dias
Ok, We know that we can generate a PDF with alivePDF in the client and also
send the data to the server to be process. However we also will need
schedule a job that will generate an email with a pdf from charts. In this
case we'll also need to create the services to receive and proccess the data
and generate the email. We would avoid a lot of work using some kind of
client-server solution and also have an integrated solution. Does someone
knows something like this?

On Feb 17, 2008 11:58 PM, Andrew D. Goodfellow [EMAIL PROTECTED]
wrote:

   No, I don't think so. Use the AS3 Core Libraries for that.
 http://code.google.com/p/as3corelib/


 On Feb 17, 2008 7:01 AM, Eduardo Dias [EMAIL PROTECTED] wrote:

Ok, and what about converting a Flex chart into a JPG or other image?
  Does ALDS do that too? Or, some other Adobe tool?
 
 
  On Feb 17, 2008 3:03 AM, Andrew D. Goodfellow [EMAIL PROTECTED]
  wrote:
 
 We used the AlivePDF library on one of our client projects to
   generate PDF reports. I was very happy with the results.
  
   http://www.alivepdf.org/
   http://code.google.com/p/alivepdf/
  
   -Andy
  
  
   On Feb 16, 2008 9:40 PM, Eduardo Dias [EMAIL PROTECTED] wrote:
  
  Is there any way with Flex Charting (or some 3rd party tool
integrated with Flex) to output a FlexChart as a PDF or an image for
inclusion in a report?
   
  
  
 
  



Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-17 Thread Eduardo Dias
Ok, and what about converting a Flex chart into a JPG or other image? Does
ALDS do that too? Or, some other Adobe tool?

On Feb 17, 2008 3:03 AM, Andrew D. Goodfellow [EMAIL PROTECTED] wrote:

   We used the AlivePDF library on one of our client projects to generate
 PDF reports. I was very happy with the results.

 http://www.alivepdf.org/
 http://code.google.com/p/alivepdf/

 -Andy


 On Feb 16, 2008 9:40 PM, Eduardo Dias [EMAIL PROTECTED] wrote:

Is there any way with Flex Charting (or some 3rd party tool integrated
  with Flex) to output a FlexChart as a PDF or an image for inclusion in a
  report?
 

  



Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-17 Thread simonjpalmer
we convert to a png using this...
http://www.kaourantin.net/2005/10/png-encoder-in-as3.html

--- In flexcoders@yahoogroups.com, Eduardo Dias [EMAIL PROTECTED] wrote:

 Ok, and what about converting a Flex chart into a JPG or other
image? Does
 ALDS do that too? Or, some other Adobe tool?
 
 On Feb 17, 2008 3:03 AM, Andrew D. Goodfellow [EMAIL PROTECTED] wrote:
 
We used the AlivePDF library on one of our client projects to
generate
  PDF reports. I was very happy with the results.
 
  http://www.alivepdf.org/
  http://code.google.com/p/alivepdf/
 
  -Andy
 
 
  On Feb 16, 2008 9:40 PM, Eduardo Dias [EMAIL PROTECTED] wrote:
 
 Is there any way with Flex Charting (or some 3rd party tool
integrated
   with Flex) to output a FlexChart as a PDF or an image for
inclusion in a
   report?
  
 
   
 





Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-17 Thread Andrew D. Goodfellow
No, I don't think so. Use the AS3 Core Libraries for that.
http://code.google.com/p/as3corelib/

On Feb 17, 2008 7:01 AM, Eduardo Dias [EMAIL PROTECTED] wrote:

   Ok, and what about converting a Flex chart into a JPG or other image?
 Does ALDS do that too? Or, some other Adobe tool?


 On Feb 17, 2008 3:03 AM, Andrew D. Goodfellow [EMAIL PROTECTED]
 wrote:

We used the AlivePDF library on one of our client projects to generate
  PDF reports. I was very happy with the results.
 
  http://www.alivepdf.org/
  http://code.google.com/p/alivepdf/
 
  -Andy
 
 
  On Feb 16, 2008 9:40 PM, Eduardo Dias [EMAIL PROTECTED] wrote:
 
 Is there any way with Flex Charting (or some 3rd party tool
   integrated with Flex) to output a FlexChart as a PDF or an image for
   inclusion in a report?
  
 
 
  



Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-16 Thread Sherif Abdou
try the ImageSnapshot class


- Original Message 
From: Eduardo Dias [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Saturday, February 16, 2008 9:40:34 PM
Subject: [flexcoders]Flex Charting - Export to PDF and Images

Is there any way with Flex Charting (or some 3rd party tool integrated with 
Flex) to output a FlexChart as a PDF or an image for inclusion in a report? 



  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs

Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-16 Thread Andrew D. Goodfellow
We used the AlivePDF library on one of our client projects to generate PDF
reports. I was very happy with the results.

http://www.alivepdf.org/
http://code.google.com/p/alivepdf/

-Andy

On Feb 16, 2008 9:40 PM, Eduardo Dias [EMAIL PROTECTED] wrote:

   Is there any way with Flex Charting (or some 3rd party tool integrated
 with Flex) to output a FlexChart as a PDF or an image for inclusion in a
 report?
  



Re: [flexcoders] Flex Charting chart updated event?

2008-01-17 Thread Maciek Sakrejda
Well, if anyone is interested, I was able to more-or-less get this to
work by overriding NumericAxis protected method adjustMinMax in a custom
axis implementation, and dispatching a custom event when the
computedMinimum or computedMaximum changed. Can anyone think of a
cleaner way of doing this?

By the way, my hat's off to Adobe for releasing the Flex Charting source
to those who buy a charting license. Being able to look through the
actual charting code was invaluable while trying to figure out a
solution.

-- 
Maciek Sakrejda
Truviso, Inc.
http://www.truviso.com


-Original Message-
From: Maciek Sakrejda [EMAIL PROTECTED]
Reply-To: flexcoders@yahoogroups.com
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex Charting chart updated event?
Date: Wed, 16 Jan 2008 14:51:41 -0800

I've looked into binding to the value of DateTimeAxis.maximum and
DateTimeAxis.minimum, but it looks like these are not being called when
the range is established. I assume that the DateTimeAxis class just
updates its private variables for max and min, without using the setters
and getters, so that the binding event is not fired (I have confirmed
that the bindings are firing correctly, just not when the actual minimum
and maximum is established) ... Any suggestions as to how to work around
this?

Thanks,
Maciek Sakrejda

-Original Message-
From: Maciek [EMAIL PROTECTED]
Reply-To: flexcoders@yahoogroups.com
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Charting chart updated event?
Date: Tue, 15 Jan 2008 22:24:26 -0800

I need to update some UI elements when a chart receives new data from
its data provider and is done updating (specifically, it updates the new
minimums and maximums for its axes). I've looked at the Flex Charting
events, and I don't see anything like this. Anyone know of related
events I could listen for?

Thanks,
Maciek Sakrejda




 




Re: [flexcoders] Flex Charting chart updated event?

2008-01-16 Thread Maciek Sakrejda
I've looked into binding to the value of DateTimeAxis.maximum and
DateTimeAxis.minimum, but it looks like these are not being called when
the range is established. I assume that the DateTimeAxis class just
updates its private variables for max and min, without using the setters
and getters, so that the binding event is not fired (I have confirmed
that the bindings are firing correctly, just not when the actual minimum
and maximum is established) ... Any suggestions as to how to work around
this?

Thanks,
Maciek Sakrejda


-Original Message-
From: Maciek [EMAIL PROTECTED]
Reply-To: flexcoders@yahoogroups.com
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Charting chart updated event?
Date: Tue, 15 Jan 2008 22:24:26 -0800

I need to update some UI elements when a chart receives new data from
its data provider and is done updating (specifically, it updates the new
minimums and maximums for its axes). I've looked at the Flex Charting
events, and I don't see anything like this. Anyone know of related
events I could listen for?

Thanks,
Maciek Sakrejda




 




Re: [flexcoders] Flex Charting Width resetting after data comes back

2007-11-30 Thread Tom Chiverton
On Friday 30 Nov 2007, jensen.axel wrote:
 I have a vbox with a line chart in it's got 100% width at first until
 the data comes back, when the data gets back it shortens it's own
 width... i'm a little confused why it doesn't stretch out...

Could it be adjusting itself due to having to draw labels for the axis' or 
something.

-- 
Tom Chiverton
Helping to globally supply bleeding-edge bandwidth
on: http://thefalken.livejournal.com



Please note, as of 10th December 2007 the registered office address of 
Halliwells LLP will be at 3 Hardman Square, Spinningfields, Manchester, M3 3EB



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office.  Any reference to a partner in 
relation to Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


Re: [flexcoders] Flex Charting Survey

2006-12-14 Thread Paul Andrews
I think what the questions are saying is that the poll would have been 100% 
better with some examples, so there couldn't be a misunderstanding..

- Original Message - 
  From: Matt Chotin 
  To: flexcoders@yahoogroups.com 
  Sent: Thursday, December 14, 2006 6:09 AM
  Subject: RE: [flexcoders] Flex Charting Survey


  The former, the what's hot question.  E.g., 
http://screening.nasdaq.com/heatmaps/heatmap_pmi.asp or what you see at 
http://www.labescape.com/


--

  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul 
Hastings
  Sent: Wednesday, December 13, 2006 9:52 PM
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders] Flex Charting Survey

   

  On 12/14/06, Matt Chotin [EMAIL PROTECTED] wrote:
   Do you use charts in Flex or do you think you may in the future? Please
   take 2 minutes to take a survey on possible chart types and enhancements
   for a future release. It's two questions and will take you to flex.org
   when complete.

  what's a heat map? like what's hot stock chart? or some kind of
  surface/contour one?

   

Re: [flexcoders] Flex Charting Survey

2006-12-13 Thread Paul Hastings
On 12/14/06, Matt Chotin [EMAIL PROTECTED] wrote:
 Do you use charts in Flex or do you think you may in the future? Please
 take 2 minutes to take a survey on possible chart types and enhancements
 for a future release. It's two questions and will take you to flex.org
 when complete.

what's a heat map? like what's hot stock chart? or some kind of
surface/contour one?


RE: [flexcoders] Flex Charting Survey

2006-12-13 Thread Matt Chotin
A TreeMap might be similar too: http://www.appfusion.com/treemap/

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Paul Hastings
Sent: Wednesday, December 13, 2006 9:52 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex Charting Survey

 

On 12/14/06, Matt Chotin [EMAIL PROTECTED] mailto:mchotin%40adobe.com
 wrote:
 Do you use charts in Flex or do you think you may in the future?
Please
 take 2 minutes to take a survey on possible chart types and
enhancements
 for a future release. It's two questions and will take you to flex.org
 when complete.

what's a heat map? like what's hot stock chart? or some kind of
surface/contour one?

 



RE: [flexcoders] Flex Charting Survey

2006-12-13 Thread Matt Chotin
The former, the what's hot question.  E.g.,
http://screening.nasdaq.com/heatmaps/heatmap_pmi.asp
http://screening.nasdaq.com/heatmaps/heatmap_pmi.asp  or what you see
at http://www.labescape.com/



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Paul Hastings
Sent: Wednesday, December 13, 2006 9:52 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex Charting Survey

 

On 12/14/06, Matt Chotin [EMAIL PROTECTED] mailto:mchotin%40adobe.com
 wrote:
 Do you use charts in Flex or do you think you may in the future?
Please
 take 2 minutes to take a survey on possible chart types and
enhancements
 for a future release. It's two questions and will take you to flex.org
 when complete.

what's a heat map? like what's hot stock chart? or some kind of
surface/contour one?

 



Re: [flexcoders] Flex Charting production licensing costs

2006-12-11 Thread Stacy Tyler Young

You can buy a standalone license for $299 here!
https://store1.adobe.com/cfusion/store/index.cfm?store=OLS-USamp;PROMOID=BI
OZamp;NR=0#loc=en_usamp;view=ols_prodamp;store=OLS-USamp;categoryOID=152
1318amp;distributionOID=103amp;PROMOID=BIOZamp;NR=0

Cheers,

Stace


On 12/11/06 4:52 PM, Valy Sivec [EMAIL PROTECTED] wrote:

  
  
  
 
 How much it would cost the license for the charting package?. I need to
 include some charts in a Flex project that uses the free SDK framework.
 
 I'm not using FDS.
 
 Thanks,
 Valy
 
 
 Need a quick answer? Get one in minutes from people who know. Ask your
 question on Yahoo! Answers
 http://answers.yahoo.com/;_ylc=X3oDMTFvbGNhMGE3BF9TAzM5NjU0NTEwOARfcwMzOTY1ND
 UxMDMEc2VjA21haWxfdGFnbGluZQRzbGsDbWFpbF90YWcx .
  
 




RE: [flexcoders] Flex charting

2006-07-31 Thread Matt Horn
Assuming you want to use this example with Flex 2, then yes, you have to
change the namespace. You must also have the data.xml file in the same
directory as the app (unless you change the way it's loaded). Here are
some ideas.

You can load the file directly as a source of a Model, as the following
example shows:

?xml version=1.0 encoding=utf-8?
!-- charts/XMLFileTest.mxml --
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
mx:Model id=results source=data.xml/
mx:LineChart id=chart dataProvider={results.result}
mx:horizontalAxis
mx:CategoryAxis categoryField=month/
/mx:horizontalAxis
mx:series
mx:LineSeries yField=banana
displayName=Banana/
mx:LineSeries yField=apple
displayName=Apple/
mx:LineSeries yField=orange
displayName=Orange/
/mx:series
/mx:LineChart
/mx:Application

If you want to use an ArrayCollection as the chart's data provider, you
can convert the Model to one using the following example:
?xml version=1.0 encoding=utf-8?
!-- charts/XMLFileTest2.mxml --
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
width=100% height=100%
mx:Script
import mx.utils.ArrayUtil;
/mx:Script
mx:Model id=results source=data.xml/
mx:ArrayCollection id=myAC
source={ArrayUtil.toArray(results.result)}/
mx:LineChart id=chart dataProvider={myAC}
mx:horizontalAxis
mx:CategoryAxis categoryField=month/
/mx:horizontalAxis
mx:series
mx:LineSeries yField=banana
displayName=Banana/
mx:LineSeries yField=apple
displayName=Apple/
mx:LineSeries yField=orange
displayName=Orange/
/mx:series
/mx:LineChart
/mx:Application

You can also define the XML file as a URL for an HTTPService component,
and then bind the HTTPService result directly to the chart's data
provider, as the following example shows:
?xml version=1.0 encoding=utf-8?
!-- charts/XMLFileTest3.mxml --
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
width=100% height=100% creationComplete=srv.send()
mx:HTTPService id=srv url=data.xml/
mx:LineChart id=chart
dataProvider={srv.lastResult.data.result}
mx:horizontalAxis
mx:CategoryAxis categoryField=month/
/mx:horizontalAxis
mx:series
mx:LineSeries yField=apple name=Apple/
mx:LineSeries yField=orange name=Orange/
mx:LineSeries yField=banana name=Banana/
/mx:series
/mx:LineChart
/mx:Application

Again, to use an ArrayCollection, you can load the HTTPService result as
an ArrayCollection by way of a Model, as the following example shows:
?xml version=1.0 encoding=utf-8?
!-- charts/XMLFileTest4.mxml --
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;
width=100% height=100% creationComplete=srv.send()
mx:Script
import mx.utils.ArrayUtil;
/mx:Script
mx:HTTPService id=srv url=data.xml/
mx:Model id=results{srv.lastResult}/mx:Model
mx:LineChart id=chart dataProvider={results.data.result}
mx:horizontalAxis
mx:CategoryAxis categoryField=month/
/mx:horizontalAxis
mx:series
mx:LineSeries yField=apple name=Apple/
mx:LineSeries yField=orange name=Orange/
mx:LineSeries yField=banana name=Banana/
/mx:series
/mx:LineChart
/mx:Application 

hth,

matt horn
flex docs

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of Pramod
 Sent: Monday, July 31, 2006 12:18 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Flex charting
 
 Hi All,
 
 Maybe a basic question being a new to Flex. I was working the 
 Charting Componets in Flex. Here's what i did: copied the 
 code from - 
 http://flexapps.macromedia.com/flex15/chartexplorer/explorer.m
 xml 
 http://flexapps.macromedia.com/flex15/chartexplorer/explorer.mxml
 (i guess it's not a new URL to this forum) and tried 
 executing it locally. However when i copy the same code into 
 my system and execute i get an error on the mx:Model. 
 I have pasted the code below for reference - 
 
 ?xml version=1.0 encoding=utf-8?
 
 mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml 
 http://www.macromedia.com/2003/mxml 
 width=100% height=100%
 initialize=srv.send()
 
 mx:HTTPService id=srv url=data.xml/
 
 mx:Model id=results{srv.result.data.result}/mx:Model
 
 mx:LineChart id=chart dataProvider={results} 
 showDataTips=true width=100% height=100%
 
 mx:horizontalAxis
 mx:CategoryAxis 

Re: [flexcoders] Flex charting components dont work

2006-02-03 Thread Michael Hansen



I had the same experience. I suspect it some setup that has to be done, but I have not had the time to investigate.cheers-michaelOn 2/3/06, 
ze_fsaldanha [EMAIL PROTECTED] wrote:




Afther the instal of the framework the IDE and FES its ok, but the 
charts dont work in Flex Sample Apps (Collaboration Dashboard and 
Real Time Data Feed)I think the error is because the NOTE:

Error
id is specified but mx:SeriesInterpolate can't be resolved to a 
component implementation

But and i try to use charts on IDE flex builder without server the 
problems panel show the same error.

I dont know whats up I have the charts.swc in the bins folders

Here is the paths:

C:\Documents and 
Settings\Utilizador\workspaceEclipse\.metadata\.plugins\zorn.project\
flex2_sdk\frameworks\libs

C:\Programas\Adobe\Flex Charting Components 2 Beta 1\libs

C:\Programas\Adobe\Flex Builder 2 Beta 1\Flex Framework 2
\frameworks\libs

C:\Programas\Adobe\Flex Builder 2 Plug-in Beta 1\Flex Framework 2
\frameworks\libs



need some help, something is missing me maybe the last realease of 
Flex alpha charts conflit with beta?













--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com









  
  
SPONSORED LINKS
  
  
  


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group flexcoders on the web.

  To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
.



  

















--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Flex charting components dont work

2006-02-03 Thread Matt Chotin
For the samples you need to get the charts.swc into samples
web-inf/flex/libs.  You can download the charting components separately.


Matt


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of ze_fsaldanha
Sent: Thursday, February 02, 2006 6:46 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex charting components dont work

Afther the instal of the framework the IDE and FES its ok, but the 
charts dont work in Flex Sample Apps (Collaboration Dashboard and 
Real Time Data Feed)I think the error is because the NOTE:

Error
id is specified but mx:SeriesInterpolate can't be resolved to a 
component implementation

But and i try to use charts on IDE flex builder without server the 
problems panel show the same error.

I dont know whats up I have the charts.swc in the bins folders

Here is the paths:

C:\Documents and 
Settings\Utilizador\workspaceEclipse\.metadata\.plugins\zorn.project\
flex2_sdk\frameworks\libs

C:\Programas\Adobe\Flex Charting Components 2 Beta 1\libs

C:\Programas\Adobe\Flex Builder 2 Beta 1\Flex Framework 2
\frameworks\libs

C:\Programas\Adobe\Flex Builder 2 Plug-in Beta 1\Flex Framework 2
\frameworks\libs



need some help, something is missing me maybe the last realease of 
Flex alpha charts conflit with beta?








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Flex charting components dont work

2006-02-03 Thread Johannes Nel



when my charts did not work (i first installed the standalone editor, then switched to the plugin bla bla) all i did was drag the swc into my project references and then that sorted it self out post an eclipse restart
On 2/3/06, Matt Chotin [EMAIL PROTECTED] wrote:
For the samples you need to get the charts.swc into samplesweb-inf/flex/libs.You can download the charting components separately.Matt-Original Message-From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] OnBehalf Of ze_fsaldanhaSent: Thursday, February 02, 2006 6:46 PMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Flex charting components dont workAfther the instal of the framework the IDE and FES its ok, but thecharts dont work in Flex Sample Apps (Collaboration Dashboard and
Real Time Data Feed)I think the error is because the NOTE:Errorid is specified but mx:SeriesInterpolate can't be resolved to acomponent implementationBut and i try to use charts on IDE flex builder without server the
problems panel show the same error.I dont know whats up I have the charts.swc in the bins foldersHere is the paths:C:\Documents andSettings\Utilizador\workspaceEclipse\.metadata\.plugins\zorn.project\
flex2_sdk\frameworks\libsC:\Programas\Adobe\Flex Charting Components 2 Beta 1\libsC:\Programas\Adobe\Flex Builder 2 Beta 1\Flex Framework 2\frameworks\libsC:\Programas\Adobe\Flex Builder 2 Plug-in Beta 1\Flex Framework 2
\frameworks\libsneed some help, something is missing me maybe the last realease ofFlex alpha charts conflit with beta?--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives:http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]* Your use of Yahoo! Groups is subject to:http://docs.yahoo.com/info/terms/
-- j:pn 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com





  




  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Flex Charting Components 2 distribution

2005-11-14 Thread Matt Chotin










I think the plan at the moment is
separately, pricing hasnt been announced.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Daniel Cascais
Sent: Monday, November 14, 2005
11:58 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex
Charting Components 2 distribution





Will Flex Builder 2 include the Flex Charting Components 2 or will
these be sold separately?

If they are to be sold separately, could anyone
point me to any
[pricing] info regarding this?

Thanks,
--
Daniel Cascais
Tel: +56 (0)2 4589495
Cel: +56 (0)9 9417355








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Flex Charting Components 2 distribution

2005-11-14 Thread Daniel Cascais
Thanks for the info, Matt.

On 11/14/05, Matt Chotin [EMAIL PROTECTED] wrote:
 I think the plan at the moment is separately, pricing hasn't been announced.

Daniel Cascais
Tel: +56 (0)2  4589495
Cel: +56 (0)9  9417355


 Yahoo! Groups Sponsor ~-- 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Flex Charting

2005-02-23 Thread Ely Greenfield


Hi Rich. Flex 1.5 doesn't render any 3D charts. If you have specific
questions about fine tuning the axis plotting, you can ask them here.

Ely.