Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/15/09 18:55:24 (15 years ago)
Author:
dwagner
Message:

Added functionality: Checkbox to enable/disable Markers for every datapoint added to OptionsDialog. (#581)

File:
1 edited

Legend:

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

    r1530 r1561  
    3030
    3131    public DataRow(string label, Color color, int thickness, DrawingStyle style, List<double> dataRow) {
    32      this.Label = label;
     32      this.Label = label;
    3333      this.Color = color;
    3434      this.Thickness = thickness;
    3535      this.Style = style;
     36      this.dataRow = dataRow;
     37      this.ShowMarkers = true;
     38    }
     39
     40    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;
     44      this.Style = style;
     45      this.ShowMarkers = showMarkers;
    3646      this.dataRow = dataRow;
    3747    }
Note: See TracChangeset for help on using the changeset viewer.