Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/03/10 06:46:30 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • implemented reviewers' comments
Location:
trunk/sources/HeuristicLab.Analysis.Views/3.3
Files:
2 edited

Legend:

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

    r2908 r2917  
    6161      // descriptionTextBox
    6262      //
    63       this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    64                   | System.Windows.Forms.AnchorStyles.Right)));
    65       this.descriptionTextBox.Size = new System.Drawing.Size(287, 62);
     63      this.descriptionTextBox.Size = new System.Drawing.Size(287, 20);
    6664      //
    6765      // chart
     
    7068                  | System.Windows.Forms.AnchorStyles.Left)
    7169                  | System.Windows.Forms.AnchorStyles.Right)));
     70      this.chart.BorderlineColor = System.Drawing.Color.Black;
     71      this.chart.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     72      chartArea1.CursorX.IsUserEnabled = true;
     73      chartArea1.CursorX.IsUserSelectionEnabled = true;
     74      chartArea1.CursorY.IsUserEnabled = true;
     75      chartArea1.CursorY.IsUserSelectionEnabled = true;
    7276      chartArea1.Name = "ChartArea1";
    7377      this.chart.ChartAreas.Add(chartArea1);
    7478      legend1.Name = "Legend1";
    7579      this.chart.Legends.Add(legend1);
    76       this.chart.Location = new System.Drawing.Point(0, 94);
     80      this.chart.Location = new System.Drawing.Point(0, 52);
    7781      this.chart.Name = "chart";
    7882      series1.ChartArea = "ChartArea1";
     
    8084      series1.Name = "Series1";
    8185      this.chart.Series.Add(series1);
    82       this.chart.Size = new System.Drawing.Size(359, 180);
     86      this.chart.Size = new System.Drawing.Size(359, 222);
    8387      this.chart.TabIndex = 4;
    8488      this.chart.Text = "chart1";
    8589      //
    86       // ChartView
     90      // DataTableView
    8791      //
    8892      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    8993      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    9094      this.Controls.Add(this.chart);
    91       this.Name = "ChartView";
     95      this.Name = "DataTableView";
    9296      this.Size = new System.Drawing.Size(359, 274);
    9397      this.Controls.SetChildIndex(this.chart, 0);
  • trunk/sources/HeuristicLab.Analysis.Views/3.3/DataTableView.cs

    r2908 r2917  
    3131  /// The visual representation of a <see cref="Variable"/>.
    3232  /// </summary>
     33  [View("DataTable View")]
    3334  [Content(typeof(DataTable), true)]
    3435  public sealed partial class DataTableView : NamedItemView {
     
    109110      Series series = new Series(row.Name);
    110111      series.ChartType = SeriesChartType.FastLine;
     112      series.ToolTip = "#VAL";
    111113      for (int i = 0; i < row.Values.Count; i++)
    112114        series.Points.Add(row.Values[i]);
Note: See TracChangeset for help on using the changeset viewer.