Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/14 16:01:01 (10 years ago)
Author:
aesterer
Message:

Added chart per variable feature to preprocessing chart view

File:
1 edited

Legend:

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

    r10712 r10717  
    2020#endregion
    2121
     22using System;
    2223using System.Windows.Forms;
    2324using HeuristicLab.Analysis;
     
    4243      set { base.Content = value; }
    4344    }
     45
     46    private void checkBox1_CheckedChanged(object sender, EventArgs e) {
     47      if (allInOneMode == false)
     48        allInOneMode = true;
     49      else
     50        allInOneMode = false;
     51      GenerateChart();
     52    }
    4453  }
    4554}
Note: See TracChangeset for help on using the changeset viewer.