Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/29/09 17:23:18 (15 years ago)
Author:
cbahner
Message:

#636 first impl. of drawingStyle (DataRowSettings)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/3.2/DataRow.cs

    r1561 r1962  
    1818    private readonly List<double> dataRow = new List<double>();
    1919
    20     // TODO implement calculation of min and max values
    2120    private double minValue = double.MaxValue;
    2221    private double maxValue = double.MinValue;
     
    2625   
    2726    public DataRow(string label) {
    28       this.Label = label;
     27      this.RowSettings.Label = label;
    2928    }
    3029
    3130    public DataRow(string label, Color color, int thickness, DrawingStyle style, List<double> dataRow) {
    32       this.Label = label;
    33       this.Color = color;
    34       this.Thickness = thickness;
     31      this.RowSettings.Label = label;
     32      this.RowSettings.Color = color;
     33      this.RowSettings.Thickness = thickness;
    3534      this.Style = style;
    3635      this.dataRow = dataRow;
     
    3938
    4039    public DataRow(string label, Color color, int thickness, DrawingStyle style, List<double> dataRow, bool showMarkers) {
    41       this.Label = label;
    42       this.Color = color;
    43       this.Thickness = thickness;
     40      this.RowSettings.Label = label;
     41      this.RowSettings.Color = color;
     42      this.RowSettings.Thickness = thickness;
    4443      this.Style = style;
    4544      this.ShowMarkers = showMarkers;
Note: See TracChangeset for help on using the changeset viewer.