public LegendItem(string name, Color color, string image)
 {
     this.name  = name;
     this.color = color;
     this.image = image;
     this.cells = new LegendCellCollection(this);
 }
 public LegendItem()
 {
     this.cells = new LegendCellCollection(this);
 }