Changeset 10658 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs
- Timestamp:
- 03/26/14 10:52:55 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs
r10614 r10658 26 26 namespace HeuristicLab.DataPreprocessing { 27 27 [Item("LineChart", "Represents the line chart grid.")] 28 public class LineChartContent : Item, IViewShortcut {28 public class LineChartContent : PreprocessingChartContent { 29 29 30 private readonly ILineChartLogic lineChartLogic; 31 public LineChartContent(ILineChartLogic theLineChartLogic) { 32 lineChartLogic = theLineChartLogic; 30 public LineChartContent(IChartLogic chartlogic) :base(chartlogic) { 33 31 } 34 32 … … 36 34 : base(content, cloner) { 37 35 38 }39 40 public ILineChartLogic LineChartLogic {41 get {42 return lineChartLogic;43 }44 36 } 45 37 … … 52 44 } 53 45 54 public event DataPreprocessingChangedEventHandler Changed {55 add { lineChartLogic.Changed += value; }56 remove { lineChartLogic.Changed -= value; }57 }58 46 } 59 47 }
Note: See TracChangeset
for help on using the changeset viewer.