Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/02/16 13:06:49 (7 years ago)
Author:
pfleck
Message:

#2713 Moved the charting logic out of DataTableView and ScatterPlotView into new DataTableControl and ScatterPlotControl.
This way, the charts can be reused without the name-textbox and description from the NamedItemView.

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Views/3.3/ScatterPlotControl.Designer.cs

    r14435 r14439  
    2121
    2222namespace HeuristicLab.Analysis.Views {
    23   partial class ScatterPlotView {
     23  partial class ScatterPlotControl {
    2424    /// <summary>
    2525    /// Required designer variable.
     
    4545    /// </summary>
    4646    private void InitializeComponent() {
     47      this.components = new System.ComponentModel.Container();
    4748      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
    4849      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
     
    5152      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
    5253      this.configureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    53       ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5454      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
    5555      this.SuspendLayout();
    5656      //
    57       // nameTextBox
    58       //
    59       this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
    60       this.errorProvider.SetIconPadding(this.nameTextBox, 2);
    61       this.nameTextBox.Location = new System.Drawing.Point(55, 0);
    62       this.nameTextBox.Size = new System.Drawing.Size(279, 20);
    63       //
    64       // infoLabel
    65       //
    66       this.infoLabel.Location = new System.Drawing.Point(340, 3);
    67       //
    6857      // chart
    6958      //
    70       this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    71                   | System.Windows.Forms.AnchorStyles.Left)
    72                   | System.Windows.Forms.AnchorStyles.Right)));
     59      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
     60            | System.Windows.Forms.AnchorStyles.Left)
     61            | System.Windows.Forms.AnchorStyles.Right)));
    7362      this.chart.BorderlineColor = System.Drawing.Color.Black;
    7463      this.chart.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     
    8473      legend1.Name = "Default";
    8574      this.chart.Legends.Add(legend1);
    86       this.chart.Location = new System.Drawing.Point(0, 26);
     75      this.chart.Location = new System.Drawing.Point(0, 0);
    8776      this.chart.Name = "chart";
    8877      series1.ChartArea = "Default";
     
    9079      series1.Name = "Default";
    9180      this.chart.Series.Add(series1);
    92       this.chart.Size = new System.Drawing.Size(359, 248);
     81      this.chart.Size = new System.Drawing.Size(359, 274);
    9382      this.chart.TabIndex = 3;
    9483      this.chart.Text = "chart";
     
    10695      this.configureToolStripMenuItem.Size = new System.Drawing.Size(256, 22);
    10796      this.configureToolStripMenuItem.Text = "Configure Chart";
    108       this.configureToolStripMenuItem.Click += new System.EventHandler(configureToolStripMenuItem_Click);
     97      this.configureToolStripMenuItem.Click += new System.EventHandler(this.configureToolStripMenuItem_Click);
    10998      //
    110       // ScatterPlotView
     99      // ScatterPlotControl
    111100      //
    112       this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    113101      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
    114102      this.Controls.Add(this.chart);
    115       this.Name = "ScatterPlotView";
     103      this.Name = "ScatterPlotControl";
    116104      this.Size = new System.Drawing.Size(359, 274);
    117       this.Controls.SetChildIndex(this.infoLabel, 0);
    118       this.Controls.SetChildIndex(this.chart, 0);
    119       this.Controls.SetChildIndex(this.nameLabel, 0);
    120       this.Controls.SetChildIndex(this.nameTextBox, 0);
    121       ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    122105      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
    123106      this.ResumeLayout(false);
    124       this.PerformLayout();
    125107
    126108    }
Note: See TracChangeset for help on using the changeset viewer.