Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/13/09 19:18:21 (16 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/MinAggregator.cs

    r1327 r1343  
    112112    }
    113113
     114
     115    private bool showYAxis = false;
     116
     117    public bool ShowYAxis {
     118      get { return showYAxis; }
     119      set {
     120        showYAxis = value;
     121        OnDataRowChanged(this);
     122      }
     123    }
     124
    114125    private ILabelProvider labelProvider = new ContinuousLabelProvider("0.##");
    115126    public ILabelProvider YAxisLabelProvider {
Note: See TracChangeset for help on using the changeset viewer.