Esempio n. 1
0
        public void ViewFilterGraph(object sender, FilterGraphObjectCollection collection)
        {
            var aggFilter = collection.GetFilter() as AggregateFilter;

            //if it's a cohort set
            if (aggFilter != null && aggFilter.GetAggregate().IsCohortIdentificationAggregate)
            {
                var cohortAggregate = aggFilter.GetAggregate();
                //use this instead
                new ExecuteCommandViewCohortAggregateGraph(this,
                                                           new CohortSummaryAggregateGraphObjectCollection(cohortAggregate, collection.GetGraph(), CohortSummaryAdjustment.WhereRecordsIn, aggFilter))
                .Execute();

                return;
            }

            Activate <FilterGraphUI>(collection);
        }
Esempio n. 2
0
 public void ViewFilterGraph(object sender, FilterGraphObjectCollection collection)
 {
     throw new NotImplementedException();
 }