- Timestamp:
- 03/27/09 18:13:13 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Visualization/YAxisDescriptor.cs
r1458 r1460 13 13 private bool showYAxis = true; 14 14 private string label = ""; 15 public bool ClipChangeable = true;15 public bool clipChangeable = true; 16 16 private AxisPosition position = AxisPosition.Left; 17 17 … … 79 79 } 80 80 81 public bool Zoom_{82 get { return ClipChangeable; }83 set { ClipChangeable = value; }81 public bool ClipChangeable { 82 get { return clipChangeable; } 83 set { clipChangeable = value; } 84 84 } 85 85
Note: See TracChangeset
for help on using the changeset viewer.