[6976] | 1 | namespace HeuristicLab.Clients.Hive.Views {
|
---|
| 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.CustomProperties = "DrawingStyle=Cylinder";
|
---|
| 47 | series1.IsVisibleInLegend = false;
|
---|
| 48 | series1.Legend = "Legend";
|
---|
| 49 | series1.Name = "Series1";
|
---|
| 50 | series1.YValuesPerPoint = 2;
|
---|
| 51 | series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Time;
|
---|
| 52 | this.chart.Series.Add(series1);
|
---|
| 53 | this.chart.Size = new System.Drawing.Size(687, 347);
|
---|
| 54 | this.chart.TabIndex = 0;
|
---|
| 55 | this.chart.Text = "chart";
|
---|
| 56 | //
|
---|
| 57 | // GanttChart
|
---|
| 58 | //
|
---|
| 59 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 60 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 61 | this.Controls.Add(this.chart);
|
---|
| 62 | this.Name = "GanttChart";
|
---|
| 63 | this.Size = new System.Drawing.Size(687, 347);
|
---|
| 64 | ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
|
---|
| 65 | this.ResumeLayout(false);
|
---|
| 66 |
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | #endregion
|
---|
| 70 |
|
---|
| 71 | private Visualization.ChartControlsExtensions.EnhancedChart chart;
|
---|
| 72 | }
|
---|
| 73 | }
|
---|