Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/15/17 16:30:45 (7 years ago)
Author:
pfleck
Message:

#2709 Adapted DataTable/ScatterPlotControl to the recent (re-) merge of the -View and -Control.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/LineChartView.cs

    r14902 r14983  
    3838    protected Dictionary<string, DataRow> allInOneDataRows;
    3939    protected DataTable allInOneDataTable;
    40     protected DataTableControl allInOneDataTableControl;
     40    protected DataTableView allInOneDataTableView;
    4141
    4242    public LineChartView() {
     
    4545
    4646      allInOneDataRows = new Dictionary<string, DataRow>();
    47       allInOneDataTable= new DataTable();
     47      allInOneDataTable = new DataTable();
    4848    }
    4949
     
    7171      return Content.AllInOneMode ? 1 : base.GetNumberOfVisibleDataTables();
    7272    }
    73     protected override IEnumerable<DataTableControl> GetVisibleDataTables() {
     73    protected override IEnumerable<DataTableView> GetVisibleDataTables() {
    7474      if (Content.AllInOneMode) {
    75         if (allInOneDataTableControl == null)
    76           allInOneDataTableControl = new DataTableControl() { Content = allInOneDataTable };
    77         return new[] { allInOneDataTableControl };
     75        if (allInOneDataTableView == null)
     76          allInOneDataTableView = new DataTableView() { Content = allInOneDataTable };
     77        return new[] { allInOneDataTableView };
    7878      }
    7979      return base.GetVisibleDataTables();
Note: See TracChangeset for help on using the changeset viewer.