Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/16 15:00:49 (8 years ago)
Author:
pfleck
Message:

#2597:

  • merged recent trunk changes for GetUsedVariablesForPrediction method.
  • Merged chart from RegressionSolutionGradientView and existing GradientChart.
  • Used the GradientChart in the RegressionSolutionGradientView.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/RegressionSolutionGradientView.Designer.cs

    r13824 r13831  
    2323  partial class RegressionSolutionGradientView {
    2424    /// <summary>
    25     /// Required designer variable.
     25    /// Required designer variableNames.
    2626    /// </summary>
    2727    private System.ComponentModel.IContainer components = null;
     
    4545    /// </summary>
    4646    private void InitializeComponent() {
    47       this.components = new System.ComponentModel.Container();
    48       System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
    49       System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
    50       this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
    5147      this.splitContainer = new System.Windows.Forms.SplitContainer();
     48      this.gradientChart = new HeuristicLab.Problems.DataAnalysis.Views.GradientChart();
    5249      this.configurationGroupBox = new System.Windows.Forms.GroupBox();
    5350      this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
    54       ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
    5551      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
    5652      this.splitContainer.Panel1.SuspendLayout();
     
    5955      this.configurationGroupBox.SuspendLayout();
    6056      this.SuspendLayout();
    61       //
    62       // chart
    63       //
    64       chartArea1.Name = "ChartArea";
    65       this.chart.ChartAreas.Add(chartArea1);
    66       this.chart.Dock = System.Windows.Forms.DockStyle.Fill;
    67       legend1.Alignment = System.Drawing.StringAlignment.Center;
    68       legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top;
    69       legend1.Name = "Default";
    70       this.chart.Legends.Add(legend1);
    71       this.chart.Location = new System.Drawing.Point(0, 0);
    72       this.chart.Name = "chart";
    73       this.chart.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None;
    74       this.chart.PaletteCustomColors = new System.Drawing.Color[] {
    75         System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(180)))), ((int)(((byte)(65))))),
    76         System.Drawing.Color.FromArgb(((int)(((byte)(65)))), ((int)(((byte)(140)))), ((int)(((byte)(240))))),
    77         System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(58)))), ((int)(((byte)(2)))))};
    78       this.chart.Size = new System.Drawing.Size(715, 376);
    79       this.chart.TabIndex = 0;
    80       this.chart.CustomizeLegend += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.CustomizeLegendEventArgs>(this.chart_CustomizeLegend);
    81       this.chart.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Chart_MouseDoubleClick);
    82       this.chart.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chart_MouseDown);
    83       this.chart.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chart_MouseMove);
    8457      //
    8558      // splitContainer
     
    9265      // splitContainer.Panel1
    9366      //
    94       this.splitContainer.Panel1.Controls.Add(this.chart);
     67      this.splitContainer.Panel1.Controls.Add(this.gradientChart);
    9568      //
    9669      // splitContainer.Panel2
     
    10073      this.splitContainer.SplitterDistance = 376;
    10174      this.splitContainer.TabIndex = 1;
     75      //
     76      // gradientChart
     77      //
     78      this.gradientChart.Dock = System.Windows.Forms.DockStyle.Fill;
     79      this.gradientChart.DrawingSteps = 1000;
     80      this.gradientChart.UpdateChartAutomatically = true;
     81      this.gradientChart.Location = new System.Drawing.Point(0, 0);
     82      this.gradientChart.Name = "gradientChart";
     83      this.gradientChart.ShowCursor = false;
     84      this.gradientChart.ShowLegend = true;
     85      this.gradientChart.ShowXAxisLabel = true;
     86      this.gradientChart.ShowYAxisLabel = true;
     87      this.gradientChart.Size = new System.Drawing.Size(715, 376);
     88      this.gradientChart.TabIndex = 0;
     89      this.gradientChart.TrainingMax = 1.7976931348623157E+308D;
     90      this.gradientChart.TrainingMin = -1.7976931348623157E+308D;
     91      this.gradientChart.XAxisTicks = 10;
     92      this.gradientChart.YXAxisTicks = 5;
    10293      //
    10394      // configurationGroupBox
     
    132123      this.Name = "RegressionSolutionGradientView";
    133124      this.Size = new System.Drawing.Size(715, 591);
    134       ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
    135125      this.splitContainer.Panel1.ResumeLayout(false);
    136126      this.splitContainer.Panel2.ResumeLayout(false);
     
    143133
    144134    #endregion
    145 
    146     private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
    147135    private System.Windows.Forms.SplitContainer splitContainer;
    148136    private System.Windows.Forms.GroupBox configurationGroupBox;
    149137    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
     138    private Problems.DataAnalysis.Views.GradientChart gradientChart;
    150139  }
    151140}
Note: See TracChangeset for help on using the changeset viewer.