Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/18/17 12:29:59 (7 years ago)
Author:
pfleck
Message:

#2709

  • Fixed initial selection of the grouping text box (empty string instead of null to select the first entry).
  • General code fixes (removed unnessecary bank lines and code, class member order, ...)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/LineChartView.cs

    r14983 r14996  
    3131
    3232namespace HeuristicLab.DataPreprocessing.Views {
    33 
    3433  [View("Line Chart View")]
    3534  [Content(typeof(LineChartContent), true)]
    3635  public partial class LineChartView : PreprocessingChartView {
    37 
    3836    protected Dictionary<string, DataRow> allInOneDataRows;
    3937    protected DataTable allInOneDataTable;
    4038    protected DataTableView allInOneDataTableView;
     39
     40    public new LineChartContent Content {
     41      get { return (LineChartContent)base.Content; }
     42      set { base.Content = value; }
     43    }
    4144
    4245    public LineChartView() {
     
    4649      allInOneDataRows = new Dictionary<string, DataRow>();
    4750      allInOneDataTable = new DataTable();
    48     }
    49 
    50     public new LineChartContent Content {
    51       get { return (LineChartContent)base.Content; }
    52       set { base.Content = value; }
    5351    }
    5452
Note: See TracChangeset for help on using the changeset viewer.