[flexcoders] Stopping a Line Series on a Line Graph

2009-02-24 Thread c_higgon
Can anyone help me figure out how to stop a line from being drawn on a 
line graph after a certain date has been reached?

I currently have a line graph that shows cumulative planned activities 
counts and cumulative actual completed activities counts.  However, 
once the actual completed line reaches today's date, the line turns 
into a flat straight line.  I would like to have the graph stop drawing 
the line when the current date has been reached.

I have tried to used the interpolateValues option and have set the 
cumulative actual completed activities count to null after the current 
date has been reached, but the line graph is drawing a straight line to 
zero on the graph instead on not continuing the line segment.

Thanks,
~Chris




[flexcoders] Re: AdvancedDataGrid itemIcons

2009-01-20 Thread c_higgon

Look at setting the following parameters null on AdvancedDataGrid 
object:
  folderOpenIcon={null}
  folderClosedIcon={null}
  defaultLeafIcon={null} 
  
~Chris

--- In flexcoders@yahoogroups.com, Bill bill.frank...@... wrote:

 What would be the best way to remove the itemIcons from the 
 AdvancedDataGrid?





[flexcoders] Cairngorm Update Problem

2008-09-24 Thread c_higgon
I am working on a Cairngorm project.  I am using a ViewStack component 
to flip the user interface between a graph component and a filter data 
component both in the view layer.   The basic concept of the 
application is to have a line graph and allow the users to filter the 
data using an input screen.  All of this works the first time the user 
enters the application and uses the filter option. 

The problem I am having is the second or third time the user enters the 
filter screen.  I cannot find a way to tell the graph component to 
reset itself after the event is dispatch and the controller takes over 
and new data needs to be displayed in the graph.  (IE remove any 
annotationElements that were on the old graph)

Is there a way to notify the component in the view layer of a Cairngorm 
project from the command layer when the results are return from the 
delegate? 

Thanks,
~Chris




[flexcoders] Cairngorm BlazeDS Sample App

2008-09-18 Thread c_higgon
Does anyone have a working example of a Cairngorm project the uses a 
BlazeDS backend service (Tomcat Server)?  In my application, the 
Command class is always hitting the fault function and I am not able to 
debug it pass the point the delegate service is called.

---
Thanks,
~Chris



[flexcoders] Cairngorm - BlazeDS Example

2008-09-18 Thread c_higgon
Does any know of a good example of a Cairngorm project that uses a 
BlazeDS backend service?  I am having problem delegate to connect to 
the backend server.  Any help would be greatly appreciated.

~Chris