Last change
on this file since 1235 was
1233,
checked in by mstoeger, 16 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 | |
---|
1 | using System.Drawing;
|
---|
2 |
|
---|
3 | namespace 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.