[flexcoders] Re: Flex Chart Horizontal Axis

2009-11-24 Thread invertedspear
I don't remember how to do it, but when I had to do this a couple years ago I 
found it easier to add a line series to the chart where I wanted it than to add 
a single gridline. Maybe that's a route you can explore until someone comes up 
with something better :-)

~Mike

--- In flexcoders@yahoogroups.com, jch92592 jch92...@... wrote:

 I have a Flex Bar Chart that I would like to add *one*
 grid line to at a specific location on the horizontal axis.
 
 I have tried using the verticalChangeCount with mixed results.
 
 This grid line will be provided to indicate a goal for a KPI.
 
 Any suggestions?
 
 Thank you,
 JCH





Re: [flexcoders] Re: Flex Chart Horizontal Axis

2009-11-24 Thread Jake Churchill
I agree.  Adding a 2nd series (LineSeries) would be the easiest.  You just
have to fake the dataprovider so it draws the line how you want it.

Also, instead of a BarChart you need to change it to a CartesianChart to mix
and match different types of series.

On Tue, Nov 24, 2009 at 9:52 AM, invertedspear invertedsp...@yahoo.comwrote:



 I don't remember how to do it, but when I had to do this a couple years ago
 I found it easier to add a line series to the chart where I wanted it than
 to add a single gridline. Maybe that's a route you can explore until someone
 comes up with something better :-)

 ~Mike


 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
 jch92592 jch92...@... wrote:
 
  I have a Flex Bar Chart that I would like to add *one*
  grid line to at a specific location on the horizontal axis.
 
  I have tried using the verticalChangeCount with mixed results.
 
  This grid line will be provided to indicate a goal for a KPI.
 
  Any suggestions?
 
  Thank you,
  JCH
 

  



[flexcoders] Re: Flex Chart Horizontal Axis

2009-11-24 Thread jch92592
Thank you for the replies.

Resolution:
I added a static data element to my dataprovider with the value
of the specific goal.

I added a LineSeries to the chart and this data element to place the series.



--- In flexcoders@yahoogroups.com, jch92592 jch92...@... wrote:

 I have a Flex Bar Chart that I would like to add *one*
 grid line to at a specific location on the horizontal axis.
 
 I have tried using the verticalChangeCount with mixed results.
 
 This grid line will be provided to indicate a goal for a KPI.
 
 Any suggestions?
 
 Thank you,
 JCH