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/AvgLineAggregator.cs

    r1327 r1343  
    124124    }
    125125
     126
     127    private bool showYAxis = false;
     128
     129    public bool ShowYAxis {
     130      get { return showYAxis; }
     131      set {
     132        showYAxis = value;
     133        OnDataRowChanged(this);
     134      }
     135    }
     136
    126137    public LabelProvider.ILabelProvider YAxisLabelProvider {
    127138      get {
Note: See TracChangeset for help on using the changeset viewer.