Changeset 10871
- Timestamp:
- 05/21/14 12:48:42 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HistogramView.cs
r10867 r10871 24 24 { 25 25 logic = Content.ChartLogic; 26 Content.AllInOneMode = false; 27 26 28 27 classifierComboBox.Items.Clear(); 29 28 … … 34 33 } 35 34 36 if (classifierComboBox.SelectedIndex == -1) { 37 classifierComboBox.SelectedIndex = 0; 35 if (classifierComboBox.SelectedItem == null) { 36 // classifierComboBox.SelectedIndex = 0; 37 38 classifierComboBox.SelectedIndex = Content.ClassifierVariableIndex; 38 39 } 39 40 } … … 59 60 } 60 61 62 Content.ClassifierVariableIndex = classifierComboBox.SelectedIndex; 63 61 64 GenerateChart(); 62 65 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingDataTableView.cs
r10868 r10871 651 651 private void ToggleSeriesVisible(Series series) 652 652 { 653 654 if (!Content.Rows.Any(x => x.Name == series.Name)) 655 return; 656 653 657 if (!invisibleSeries.Contains(series)) 654 658 { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs
r10771 r10871 28 28 public class HistogramContent : PreprocessingChartContent { 29 29 30 private int classifierVariableIndex = 0; 31 30 32 public HistogramContent(IChartLogic chartlogic) :base(chartlogic) { 33 AllInOneMode = false; 31 34 } 32 35 … … 35 38 36 39 } 40 41 public int ClassifierVariableIndex 42 { 43 get { return this.classifierVariableIndex; } 44 set { this.classifierVariableIndex = value; } 45 } 46 37 47 38 48 public static new Image StaticItemImage {
Note: See TracChangeset
for help on using the changeset viewer.