Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/21/14 15:28:27 (10 years ago)
Author:
aesterer
Message:

Added scatter plot view

File:
1 copied

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/ScatterPlotContent.cs

    r10867 r10882  
    2626namespace HeuristicLab.DataPreprocessing {
    2727
    28   [Item("LineChart", "Represents the line chart grid.")]
    29   public class LineChartContent : PreprocessingChartContent {
     28  [Item("ScatterPlot", "Represents a scatter plot.")]
     29  public class ScatterPlotContent : PreprocessingChartContent {
    3030
    31     public LineChartContent(IChartLogic chartlogic)
     31    public ScatterPlotContent(IChartLogic chartlogic)
    3232      : base(chartlogic) {
    3333    }
    3434
    35     public LineChartContent(LineChartContent content, Cloner cloner)
     35    public ScatterPlotContent(ScatterPlotContent content, Cloner cloner)
    3636      : base(content, cloner) {
    3737
     
    4343
    4444    public override IDeepCloneable Clone(Cloner cloner) {
    45       return new LineChartContent(this, cloner);
     45      return new ScatterPlotContent(this, cloner);
    4646    }
    4747
Note: See TracChangeset for help on using the changeset viewer.