Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/21/09 13:43:10 (15 years ago)
Author:
bspisic
Message:

Panning and zooming (#424) Implemented deactivating of YAxis clipping in OptionsDialog

File:
1 edited

Legend:

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

    r1350 r1390  
    1111    private bool showYAxis = true;
    1212    private string label = "";
     13    public bool ClipChangeable = true;
    1314
    1415    public event YAxisDescriptorChangedHandler YAxisDescriptorChanged;
     
    7273    }
    7374
     75    public bool Zoom_ {
     76      get { return ClipChangeable; }
     77      set { ClipChangeable = value; }
     78    }
     79
    7480    public void AddDataRow(IDataRow row) {
    7581      if (row.YAxis != null) {
Note: See TracChangeset for help on using the changeset viewer.