Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/13/09 19:07:53 (15 years ago)
Author:
shofstad
Message:

Legend implementation updated with position setting (#407)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/Options/ViewSettings.cs

    r1341 r1342  
    11using System.Drawing;
     2using HeuristicLab.Visualization.Legend;
    23
    34namespace HeuristicLab.Visualization.Options {
     
    1112    private Font xAxisFont;
    1213    private Color xAxisColor;
     14    private LegendPosition legendPosition;
    1315
    1416    public ViewSettings() {
     
    2123      xAxisFont = new Font("Arial", 8);
    2224      xAxisColor = Color.Blue;
     25
     26      legendPosition = LegendPosition.Left;
    2327    }
    2428
     
    5862      set { xAxisColor = value; }
    5963    }
     64
     65    public LegendPosition LegendPosition {
     66      get { return legendPosition; }
     67      set { legendPosition = value; }
     68    }
    6069  }
    6170
Note: See TracChangeset for help on using the changeset viewer.