Last change
on this file since 10712 was
10712,
checked in by rstoll, 11 years ago
|
- Changed views to standard views in order that a double click opens them in a new tab
|
File size:
685 bytes
|
Rev | Line | |
---|
[10712] | 1 | using System.Windows.Forms;
|
---|
[10658] | 2 | using HeuristicLab.Analysis;
|
---|
| 3 | using HeuristicLab.MainForm;
|
---|
| 4 |
|
---|
| 5 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
| 6 |
|
---|
| 7 | [View("Histogram View")]
|
---|
[10712] | 8 | [Content(typeof(HistogramContent), true)]
|
---|
[10658] | 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.