Changeset 5759 for branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression
- Timestamp:
- 03/19/11 02:22:45 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionLineChartView.cs
r5663 r5759 136 136 this.chart.ChartAreas[0].AxisX.StripLines.Clear(); 137 137 this.CreateAndAddStripLine("Training", Color.FromArgb(20, Color.Green), 138 Content.ProblemData.TrainingPartition Start.Value,139 Content.ProblemData.TrainingPartition End.Value);138 Content.ProblemData.TrainingPartition.Start, 139 Content.ProblemData.TrainingPartition.End); 140 140 this.CreateAndAddStripLine("Test", Color.FromArgb(20, Color.Red), 141 Content.ProblemData.TestPartition Start.Value,142 Content.ProblemData.TestPartition End.Value);141 Content.ProblemData.TestPartition.Start, 142 Content.ProblemData.TestPartition.End); 143 143 } 144 144
Note: See TracChangeset
for help on using the changeset viewer.