Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/13/09 19:18:21 (15 years ago)
Author:
mstoeger
Message:

Display of Y-Axes can be individually switched on and off in the options dialog. (#433)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/DataRow.cs

    r1285 r1343  
    8383      }
    8484    }
    85 
    8685 
    8786    public string Label {
     
    114113      set {
    115114        style = value;
     115        OnDataRowChanged(this);
     116      }
     117    }
     118
     119    private bool showYAxis = true;
     120
     121    public virtual bool ShowYAxis {
     122      get { return showYAxis; }
     123      set {
     124        showYAxis = value;
    116125        OnDataRowChanged(this);
    117126      }
Note: See TracChangeset for help on using the changeset viewer.