Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-MoveOperators/HeuristicLab.Visualization.ChartControlsExtensions/3.3/GanttChart.Designer.cs @ 8206

Last change on this file since 8206 was 8206, checked in by gkronber, 12 years ago

#1847: merged r8084:8205 from trunk into GP move operators branch

File size: 3.6 KB
Line 
1namespace HeuristicLab.Visualization.ChartControlsExtensions {
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.AxisX.ScaleView.SmallScrollMinSizeType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Milliseconds;
39      chartArea1.AxisY.ScaleView.SmallScrollMinSizeType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Milliseconds;
40      chartArea1.CursorX.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Milliseconds;
41      chartArea1.CursorY.IntervalType = System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType.Milliseconds;
42      chartArea1.Name = "ChartArea1";
43      this.chart.ChartAreas.Add(chartArea1);
44      legend1.Name = "Legend";
45      this.chart.Legends.Add(legend1);
46      this.chart.Location = new System.Drawing.Point(0, 0);
47      this.chart.Name = "chart";
48      series1.ChartArea = "ChartArea1";
49      series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.RangeBar;
50      series1.CustomProperties = "DrawingStyle=Cylinder";
51      series1.IsVisibleInLegend = false;
52      series1.Legend = "Legend";
53      series1.Name = "Series1";
54      series1.YValuesPerPoint = 2;
55      series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Time;
56      this.chart.Series.Add(series1);
57      this.chart.Size = new System.Drawing.Size(687, 347);
58      this.chart.TabIndex = 0;
59      this.chart.Text = "chart";
60      //
61      // GanttChart
62      //
63      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
64      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
65      this.Controls.Add(this.chart);
66      this.Name = "GanttChart";
67      this.Size = new System.Drawing.Size(687, 347);
68      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
69      this.ResumeLayout(false);
70
71    }
72
73    #endregion
74
75    public Visualization.ChartControlsExtensions.EnhancedChart chart;
76
77
78  }
79}
Note: See TracBrowser for help on using the repository browser.