Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/27/09 20:23:17 (15 years ago)
Author:
mstoeger
Message:

Display of X- and Y-Axis-Labels (#556)

File:
1 edited

Legend:

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

    r1460 r1462  
    1212    private readonly List<IDataRow> dataRows = new List<IDataRow>();
    1313    private bool showYAxis = true;
     14    private bool showYAxisLabel = true;
    1415    private string label = "";
    1516    public bool clipChangeable = true;
     
    3536      set {
    3637        showYAxis = value;
     38        OnYAxisDescriptorChanged();
     39      }
     40    }
     41
     42    public bool ShowYAxisLabel {
     43      get { return showYAxisLabel; }
     44      set {
     45        showYAxisLabel = value;
    3746        OnYAxisDescriptorChanged();
    3847      }
Note: See TracChangeset for help on using the changeset viewer.