Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1976 for trunk/sources


Ignore:
Timestamp:
05/30/09 12:56:19 (15 years ago)
Author:
cbahner
Message:

#636 Added Label Property (read only)

Location:
trunk/sources/HeuristicLab.Visualization/3.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/3.2/DataRowBase.cs

    r1972 r1976  
    3939//    }         
    4040
    41 //    public string Label {
    42 //      get { return label; }
    43 //      set {
    44 //        label = value;
    45 //        OnDataRowChanged(this);
    46 //      }
    47 //    }
     41    public string Label
     42    {
     43        get { return RowSettings.Label; }
     44    }
    4845//
    4946//    public Color Color {
  • trunk/sources/HeuristicLab.Visualization/3.2/IDataRow.cs

    r1972 r1976  
    88
    99  public interface IDataRow {
    10     //string Label { get; set; }
     10    string Label { get; }
    1111    //Color Color { get; set; }
    1212    //int Thickness { get; set; }
Note: See TracChangeset for help on using the changeset viewer.