Changeset 14371 for trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingChartView.cs
- Timestamp:
- 11/04/16 17:46:16 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingChartView.cs
r14270 r14371 75 75 PreprocessingDataTable pdt = new PreprocessingDataTable(variableName); 76 76 pdt.Rows.Add(row); 77 // dataTablePerVariable does not contain unchecked variables => reduce insert position by number of uncheck tvariables to correct the index77 // dataTablePerVariable does not contain unchecked variables => reduce insert position by number of unchecked variables to correct the index 78 78 int uncheckedUntilVariable = checkedItemList.Content.TakeWhile(x => x.Value != variableName).Count(x => !checkedItemList.Content.ItemChecked(x)); 79 79 dataTablePerVariable.Insert(item.Index - uncheckedUntilVariable, pdt);
Note: See TracChangeset
for help on using the changeset viewer.