Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Hive_Management_Console_Refactoring_Ticket508/HeuristicLab.Visualization/Legend/LegendItem.cs @ 1368

Last change on this file since 1368 was 1233, checked in by mstoeger, 15 years ago

General housekeeping (#498) Removed some old unused Z-Order values. Replaced some var types by concrete types. Renamed some LineShape properties. Added caching of Pens and Brushes in LineShape and RectangleShape. Put axis tick calculation algorithm into its own class.

File size: 374 bytes
Line 
1using System.Drawing;
2
3namespace HeuristicLab.Visualization.Legend {
4  public class LegendItem {
5    public LegendItem(string label, Color color, int thickness) {
6      Label = label;
7      Color = color;
8      Thickness = thickness;
9    }
10
11    public string Label { get; set; }
12    public Color Color { get; set; }
13    public int Thickness { get; set; }
14  }
15}
Note: See TracBrowser for help on using the repository browser.