Ejemplo n.º 1
0
 public LegendItem(string name, Color color, string image)
 {
     this.name  = name;
     this.color = color;
     this.image = image;
     this.cells = new LegendCellCollection(this);
 }
Ejemplo n.º 2
0
 public LegendItem()
 {
     this.cells = new LegendCellCollection(this);
 }