Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/11/14 21:17:30 (10 years ago)
Author:
bburlacu
Message:

#1772: Improved display of trees and fragments in the FragmentGraphView by displaying the whole tree and highlighting the subtree and the fragment inside it. Changed color scheme to look nicer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolicExpressionTreeTile.cs

    r10835 r10838  
    133133
    134134      defaultBrush = new SolidBrush(Color.Transparent);
    135       defaultPen = new Pen(Color.Black);
     135      defaultPen = new Pen(Color.DimGray);
    136136      defaultFont = new Font(FontFamily.GenericSansSerif, 12, GraphicsUnit.Pixel);
    137137    }
     
    183183          var start = new PointD(node.X + preferredNodeWidth / 2, node.Y + preferredNodeHeight);
    184184          var end = new PointD(child.X + preferredNodeWidth / 2, child.Y);
    185           var line = new Line(this.Chart, start, end);
     185          var line = new Line(this.Chart, start, end) { Pen = defaultPen };
    186186          this.Add(line);
    187187        }
Note: See TracChangeset for help on using the changeset viewer.