Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs @ 10367

Last change on this file since 10367 was 10313, checked in by aesterer, 11 years ago

Changed buttons to icon buttons and added icons to content elements

File size: 1005 bytes
RevLine 
[10245]1using HeuristicLab.Common;
2using HeuristicLab.Core;
3using System.Drawing;
[10242]4using System;
5using System.Collections.Generic;
6using System.Linq;
7using System.Text;
8
9namespace HeuristicLab.DataPreprocessing
10{
[10313]11  [Item("LineChart", "Represents the line chart grid.")]
[10303]12  public class LineChartContent : Item
[10242]13  {
[10252]14
15    private readonly ILineChartLogic lineChartLogic;
16    public LineChartContent(ILineChartLogic theLineChartLogic)
17    {
18      lineChartLogic = theLineChartLogic;
19    }
20
[10245]21    public LineChartContent(LineChartContent content, Cloner cloner)
22      : base(content, cloner)
23    {
24
25    }
26
[10252]27    public ILineChartLogic LineChartLogic
28    {
29      get
30      {
31        return lineChartLogic;
32      }
33    }
34
[10245]35    public static new Image StaticItemImage
36    {
[10313]37      get { return HeuristicLab.Common.Resources.VSImageLibrary.PieChart; }
[10245]38    }
39
40    public override IDeepCloneable Clone(Cloner cloner)
41    {
42      return new LineChartContent(this, cloner);
43    }
[10242]44  }
45}
Note: See TracBrowser for help on using the repository browser.