- Timestamp:
- 04/02/14 14:28:19 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.cs
r10672 r10709 59 59 new FilterContent(filterLogic), 60 60 new TransformationContent(transformationLogic), 61 new ManipulationContent(manipulationLogic), 61 62 new LineChartContent(lineChartLogic), 62 63 new HistogramContent(histogramLogic) -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HeuristicLab.DataPreprocessing.Views-3.3.csproj
r10701 r10709 103 103 <DependentUpon>LineChartView.cs</DependentUpon> 104 104 </Compile> 105 <Compile Include="ManipulationView.cs"> 106 <SubType>UserControl</SubType> 107 </Compile> 108 <Compile Include="ManipulationView.Designer.cs"> 109 <DependentUpon>ManipulationView.cs</DependentUpon> 110 </Compile> 105 111 <Compile Include="Plugin.cs" /> 106 112 <Compile Include="PreprocessingChartView.cs"> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/LineChartView.cs
r10658 r10709 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Drawing; 5 using System.Data; 6 using System.Linq; 7 using System.Text; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 8 22 using System.Windows.Forms; 9 23 using HeuristicLab.Analysis; 10 using HeuristicLab.Collections;11 using HeuristicLab.Core;12 using HeuristicLab.Core.Views;13 using HeuristicLab.Data;14 24 using HeuristicLab.MainForm; 15 25
Note: See TracChangeset
for help on using the changeset viewer.