Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/15/11 14:54:43 (13 years ago)
Author:
abeham
Message:

#1465

  • updated branch with changes from trunk
  • fixed some bugs
  • introduced secondary x-axis option
Location:
branches/histogram
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram

  • branches/histogram/HeuristicLab.Analysis

  • branches/histogram/HeuristicLab.Analysis/3.3/DataVisualization/DataRowVisualProperties.cs

    r6010 r6011  
    6161      }
    6262    }
     63    private bool secondXAxis;
     64    public bool SecondXAxis {
     65      get { return secondXAxis; }
     66      set {
     67        if (secondXAxis != value) {
     68          secondXAxis = value;
     69          OnPropertyChanged("SecondXAxis");
     70        }
     71      }
     72    }
    6373    private Color color;
    6474    public Color Color {
     
    113123      set { secondYAxis = value; }
    114124    }
     125    [Storable(Name = "SecondXAxis")]
     126    private bool StorableSecondXAxis {
     127      get { return secondXAxis; }
     128      set { secondXAxis = value; }
     129    }
    115130    [Storable(Name = "Color")]
    116131    private Color StorableColor {
     
    141156      this.chartType = original.chartType;
    142157      this.secondYAxis = original.secondYAxis;
     158      this.secondXAxis = original.secondXAxis;
    143159      this.color = original.color;
    144160      this.startIndexZero = original.startIndexZero;
     161      this.bins = original.bins;
     162      this.exactBins = original.exactBins;
    145163    }
    146164    public DataRowVisualProperties() {
    147165      chartType = DataRowChartType.Line;
    148166      secondYAxis = false;
     167      secondXAxis = false;
    149168      color = Color.Empty;
    150169      startIndexZero = false;
     170      bins = 10;
     171      exactBins = false;
    151172    }
    152173
  • branches/histogram/HeuristicLab.Analysis/3.3/Tests

    • Property svn:ignore
      •  

        old new  
        11bin
        22obj
         3*.vs10x
Note: See TracChangeset for help on using the changeset viewer.