- Timestamp:
- 05/14/14 14:54:41 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/ChartLogic.cs
r10847 r10851 134 134 return null; 135 135 136 int end = selectedIndices[0]; // indices are provided in reverse order 137 int start = selectedIndices[selectedIndices.Count-1]; 136 selectedIndices.Sort(); 137 int start = selectedIndices[0]; 138 int end = selectedIndices[selectedIndices.Count-1]; 138 139 139 140 DataRow rowSelect = CreateDataRowRange(variableName, start, end, chartType); 140 rowSelect.VisualProperties.Color = Color.Green;141 141 return rowSelect; 142 142 }
Note: See TracChangeset
for help on using the changeset viewer.