Changeset 14112
- Timestamp:
- 07/19/16 16:43:01 (8 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 13958
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis.Views merged: 13958
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionScatterPlotView.cs
r12702 r14112 35 35 private const string TEST_SERIES = "Test samples"; 36 36 37 private const int OPACITY_LEVEL = 150; 38 37 39 public new IRegressionSolution Content { 38 40 get { return (IRegressionSolution)base.Content; } … … 59 61 this.chart.TextAntiAliasingQuality = TextAntiAliasingQuality.High; 60 62 this.chart.AxisViewChanged += new EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(chart_AxisViewChanged); 63 64 //make series colors semi transparent 65 this.chart.ApplyPaletteColors(); 66 this.chart.Series[ALL_SERIES].Color = Color.FromArgb(OPACITY_LEVEL, this.chart.Series[ALL_SERIES].Color); 67 this.chart.Series[TRAINING_SERIES].Color = Color.FromArgb(OPACITY_LEVEL, this.chart.Series[TRAINING_SERIES].Color); 68 this.chart.Series[TEST_SERIES].Color = Color.FromArgb(OPACITY_LEVEL, this.chart.Series[TEST_SERIES].Color); 69 70 //change all markers to circles 71 this.chart.Series[ALL_SERIES].MarkerStyle = MarkerStyle.Circle; 72 this.chart.Series[TRAINING_SERIES].MarkerStyle = MarkerStyle.Circle; 73 this.chart.Series[TEST_SERIES].MarkerStyle = MarkerStyle.Circle; 61 74 62 75 //configure axis
Note: See TracChangeset
for help on using the changeset viewer.