Exemple #1
0
 public void Add(GraphItem item)
 {
     if (_items.Find(x => x.Label == item.Label) == null)
     {
         _items.Add(item);
     }
 }
Exemple #2
0
 public Color GetColor(GraphItem item)
 {
     return(_itemColors[item]);
 }
Exemple #3
0
 public void Remove(GraphItem item)
 {
     _items.Remove(item);
 }