Last change
on this file since 10707 was
10658,
checked in by aesterer, 11 years ago
|
Created base view PreprocessingChartView for LineChartView and HistogramView. Replaced HistogramLogic and LineChartlogic with ChartLogic. Added base content ChartContent for LineChartContent and HistogramContent.
|
File size:
1.0 KB
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Drawing;
|
---|
5 | using System.Data;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using System.Windows.Forms;
|
---|
9 | using HeuristicLab.Analysis;
|
---|
10 | using HeuristicLab.Collections;
|
---|
11 | using HeuristicLab.Core;
|
---|
12 | using HeuristicLab.Core.Views;
|
---|
13 | using HeuristicLab.Data;
|
---|
14 | using HeuristicLab.MainForm;
|
---|
15 |
|
---|
16 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
17 |
|
---|
18 | [View("Histogram View")]
|
---|
19 | [Content(typeof(HistogramContent), false)]
|
---|
20 | public partial class HistogramView : PreprocessingChartView {
|
---|
21 |
|
---|
22 | private const string HISTOGRAM_CHART_TITLE = "Histogram";
|
---|
23 |
|
---|
24 | public HistogramView() {
|
---|
25 | InitializeComponent();
|
---|
26 | chartType = DataRowVisualProperties.DataRowChartType.Histogram;
|
---|
27 | chartTitle = HISTOGRAM_CHART_TITLE;
|
---|
28 | }
|
---|
29 |
|
---|
30 | public new HistogramContent Content {
|
---|
31 | get { return (HistogramContent)base.Content; }
|
---|
32 | set { base.Content = value; }
|
---|
33 | }
|
---|
34 |
|
---|
35 | protected override void OnContentChanged() {
|
---|
36 | base.OnContentChanged();
|
---|
37 | }
|
---|
38 | }
|
---|
39 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.