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

