Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HistogramView.cs @ 10712

Last change on this file since 10712 was 10712, checked in by rstoll, 10 years ago
  • Changed views to standard views in order that a double click opens them in a new tab
File size: 685 bytes
Line 
1using System.Windows.Forms;
2using HeuristicLab.Analysis;
3using HeuristicLab.MainForm;
4
5namespace HeuristicLab.DataPreprocessing.Views {
6
7  [View("Histogram View")]
8  [Content(typeof(HistogramContent), true)]
9  public partial class HistogramView : PreprocessingChartView {
10
11    private const string HISTOGRAM_CHART_TITLE = "Histogram";
12
13    public HistogramView() {
14      InitializeComponent();
15      chartType = DataRowVisualProperties.DataRowChartType.Histogram;
16      chartTitle = HISTOGRAM_CHART_TITLE;
17    }
18
19    public new HistogramContent Content {
20      get { return (HistogramContent)base.Content; }
21      set { base.Content = value; }
22    }
23
24  }
25}
Note: See TracBrowser for help on using the repository browser.