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.Views/3.3/PreprocessingScatterPlotView.cs

    r10877 r10882  
    2626using System.Windows.Forms;
    2727using System.Windows.Forms.DataVisualization.Charting;
     28using HeuristicLab.Analysis;
     29using HeuristicLab.Analysis.Views;
    2830using HeuristicLab.Collections;
    2931using HeuristicLab.Common;
     
    3133using HeuristicLab.MainForm;
    3234
    33 namespace HeuristicLab.Analysis.Views {
    34   [View("ScatterPlot View")]
    35   [Content(typeof(ScatterPlot), true)]
    36   public partial class ScatterPlotView : NamedItemView, IConfigureableView {
     35namespace HeuristicLab.DataPreprocessing.Views {
     36  [View("Preprocessing ScatterPlot View")]
     37  [Content(typeof(ScatterPlot), false)]
     38  public partial class PreprocessingScatterPlotView : ItemView, IConfigureableView {
    3739    protected List<Series> invisibleSeries;
    3840    protected Dictionary<IObservableList<Point2D<double>>, ScatterPlotDataRow> pointsRowsTable;
     
    4345    }
    4446
    45     public ScatterPlotView() {
     47    public PreprocessingScatterPlotView() {
    4648      InitializeComponent();
    4749      pointsRowsTable = new Dictionary<IObservableList<Point2D<double>>, ScatterPlotDataRow>();
     
    227229    #region Event Handlers
    228230    #region Content Event Handlers
    229     protected override void Content_NameChanged(object sender, EventArgs e) {
    230       if (InvokeRequired)
    231         Invoke(new EventHandler(Content_NameChanged), sender, e);
    232       else {
    233         chart.Titles[0].Text = Content.Name;
    234         base.Content_NameChanged(sender, e);
    235       }
    236     }
     231
    237232    private void Content_VisualPropertiesChanged(object sender, EventArgs e) {
    238233      if (InvokeRequired)
Note: See TracChangeset for help on using the changeset viewer.