Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/GanttChart.Designer.cs @ 5614

Last change on this file since 5614 was 5597, checked in by cneumuel, 14 years ago

#1233

  • extended jobview to show statelog as list with details or as ganttview
  • also a ganttview of all statelogs of all childjobs was implemented
File size: 3.0 KB
Line 
1namespace HeuristicLab.Clients.Hive.Views.ExperimentManager {
2  partial class GanttChart {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
27      System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
28      System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
29      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
30      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
31      this.SuspendLayout();
32      //
33      // chart
34      //
35      this.chart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
36                  | System.Windows.Forms.AnchorStyles.Left)
37                  | System.Windows.Forms.AnchorStyles.Right)));
38      chartArea1.Name = "ChartArea1";
39      this.chart.ChartAreas.Add(chartArea1);
40      legend1.Name = "Legend";
41      this.chart.Legends.Add(legend1);
42      this.chart.Location = new System.Drawing.Point(0, 0);
43      this.chart.Name = "chart";
44      series1.ChartArea = "ChartArea1";
45      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.RangeBar;
46      series1.IsVisibleInLegend = false;
47      series1.Legend = "Legend";
48      series1.Name = "Series1";
49      series1.YValuesPerPoint = 2;
50      series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Time;
51      this.chart.Series.Add(series1);
52      this.chart.Size = new System.Drawing.Size(709, 347);
53      this.chart.TabIndex = 0;
54      this.chart.Text = "chart";
55      //
56      // GanttChart
57      //
58      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
59      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
60      this.Controls.Add(this.chart);
61      this.Name = "GanttChart";
62      this.Size = new System.Drawing.Size(709, 347);
63      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
64      this.ResumeLayout(false);
65
66    }
67
68    #endregion
69
70    private Visualization.ChartControlsExtensions.EnhancedChart chart;
71  }
72}
Note: See TracBrowser for help on using the repository browser.