Changeset 10992 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotSingleView.cs
- Timestamp:
- 06/11/14 15:06:24 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotSingleView.cs
r10987 r10992 1 1 using System; 2 2 using System.Collections.Generic; 3 using System.ComponentModel;4 using System.Drawing;5 using System.Data;6 3 using System.Linq; 7 using System.Text;8 4 using System.Windows.Forms; 9 5 using HeuristicLab.Analysis; 10 using HeuristicLab.Analysis.Views;11 using HeuristicLab.Collections;12 using HeuristicLab.Core;13 6 using HeuristicLab.Core.Views; 14 using HeuristicLab.Data;15 using HeuristicLab.DataPreprocessing.Implementations;16 7 using HeuristicLab.MainForm; 17 8 … … 33 24 public void InitData() { 34 25 35 IEnumerable<string> variables = Content. GetVariableNames();26 IEnumerable<string> variables = Content.PreprocessingData.GetDoubleVariableNames(); 36 27 37 28 // add variables to combo boxes … … 80 71 } 81 72 82 73 83 74 }
Note: See TracChangeset
for help on using the changeset viewer.