Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10921


Ignore:
Timestamp:
05/30/14 11:46:51 (10 years ago)
Author:
pfleck
Message:
  • Changed order of ViewShortcuts in preprocessing main view
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.cs

    r10913 r10921  
    5252        var manipulationLogic = new ManipulationLogic(data, searchLogic, statisticsLogic, dataGridLogic);
    5353        var chartLogic = new ChartLogic(data);
    54         var correlationMatrixLogic = new ChartLogic(data);
     54        //var correlationMatrixLogic = new ChartLogic(data);
    5555        var filterLogic = new FilterLogic(data);
    5656        var creator = new ProblemDataCreator(Content);
    5757        var problemData = (DataAnalysisProblemData)creator.CreateProblemData();
    58         var dataCompletenessLogic = new ChartLogic(data);
     58        //var dataCompletenessLogic = new ChartLogic(data);
    5959
    6060        var viewShortcuts = new ItemList<IViewShortcut> {
    6161          new DataGridContent(dataGridLogic, manipulationLogic, filterLogic),
    6262          new StatisticsContent(statisticsLogic),
    63           new FilterContent(filterLogic),
    64           new TransformationContent(data),
    65           new ManipulationContent(manipulationLogic, searchLogic, dataGridLogic),
     63
    6664          new LineChartContent(chartLogic),
    6765          new HistogramContent(chartLogic),
     
    6967          new CorrelationMatrixContent(problemData),
    7068          new DataCompletenessChartContent(dataGridLogic, searchLogic)
     69          //new DataCompletenessChartContent(dataCompletenessLogic),
     70         
     71          new FilterContent(filterLogic),
     72          new ManipulationContent(manipulationLogic, searchLogic, dataGridLogic),
     73          new TransformationContent(data)
    7174        };
    7275
Note: See TracChangeset for help on using the changeset viewer.