Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/03/09 01:42:55 (15 years ago)
Author:
mstoeger
Message:

added many new persisted properties.
removed useless comments.
added XmlSupport class since the code for setting xml attributes is always the same.
#639

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/3.2/XAxis.cs

    r1964 r1993  
    1 
    21using System.Drawing;
    32using HeuristicLab.Visualization.Drawing;
     
    76  public class XAxis : WorldShape {
    87    public const int PixelsPerInterval = 100;
    9    
     8
    109    private ILabelProvider labelProvider = new ContinuousLabelProvider("0.####");
    1110
     
    2726                                              ClippingArea.X1)) {
    2827        TextShape tickLabel = new TextShape(x, ClippingArea.Height - 3,
    29                                         labelProvider.GetLabel(x), Font, Color);
     28                                            labelProvider.GetLabel(x), Font, Color);
    3029        tickLabel.AnchorPositionX = AnchorPositionX.Middle;
    3130        tickLabel.AnchorPositionY = AnchorPositionY.Top;
Note: See TracChangeset for help on using the changeset viewer.