Changeset 10833 for branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
- Timestamp:
- 05/11/14 00:03:36 (10 years ago)
- Location:
- branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Tracking
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Tracking/FragmentGraphView.cs
r10827 r10833 1 using System.Collections.Generic; 1 using System; 2 using System.Collections.Generic; 2 3 using System.Drawing; 3 4 using System.Linq; … … 50 51 var tile = new SymbolicExpressionTreeTile(chart); 51 52 tile.LayoutEngine = symbolicExpressionEngine; 52 tile.Label = "Generation " + node.Rank; 53 tile.Label = "Generation " + node.Rank + Environment.NewLine + 54 "Quality " + String.Format("{0:0.000}", node.Quality); 53 55 tile.Root = node.Content.Root; 54 56 var tileNode = new TileLayoutNode { Tile = tile }; … … 131 133 } 132 134 } 135 // center display on the root of the fragment graph 136 symbolicExpressionChartControl.Chart.Move(tileDictionary[root].Tile.Position.X, tileDictionary[root].Tile.Position.Y); 133 137 symbolicExpressionChartControl.UpdateEnabled = true; 134 138 symbolicExpressionChartControl.EnforceUpdate(); -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Tracking/SymboldDataAnalysisGenealogyView.Designer.cs
r10746 r10833 19 19 */ 20 20 #endregion 21 22 using System.Drawing; 21 23 22 24 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views { … … 100 102 this.symbolicExpressionTreeChart.SuspendRepaint = false; 101 103 this.symbolicExpressionTreeChart.TabIndex = 0; 102 this.symbolicExpressionTreeChart.TextFont = new System.Drawing.Font( "Microsoft Sans Serif", 12F);104 this.symbolicExpressionTreeChart.TextFont = new System.Drawing.Font(FontFamily.GenericSansSerif, 10); 103 105 this.symbolicExpressionTreeChart.Tree = null; 104 106 //
Note: See TracChangeset
for help on using the changeset viewer.