Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/LineChart.Designer.cs @ 1049

Last change on this file since 1049 was 1038, checked in by mstoeger, 16 years ago

Modified the XAxis labels so they are always visible at the bottom. (#433)
Added simple layout management to the line chart's root shape containing a title-, lines- and xaxis-area. (#345)

File size: 2.0 KB
Line 
1namespace HeuristicLab.Visualization
2{
3    partial class LineChart
4    {
5        /// <summary>
6        /// Required designer variable.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Clean up any resources being used.
12        /// </summary>
13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing && (components != null))
17            {
18                components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Component Designer generated code
24
25        /// <summary>
26        /// Required method for Designer support - do not modify
27        /// the contents of this method with the code editor.
28        /// </summary>
29        private void InitializeComponent()
30        {
31          this.canvas = new HeuristicLab.Visualization.CanvasUI();
32          this.SuspendLayout();
33          //
34          // canvas
35          //
36          this.canvas.Dock = System.Windows.Forms.DockStyle.Fill;
37          this.canvas.Location = new System.Drawing.Point(0, 0);
38          this.canvas.MouseEventListener = null;
39          this.canvas.Name = "canvas";
40          this.canvas.Size = new System.Drawing.Size(552, 390);
41          this.canvas.TabIndex = 0;
42          this.canvas.Text = "canvas";
43          this.canvas.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
44          //
45          // LineChart
46          //
47          this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
48          this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
49          this.Controls.Add(this.canvas);
50          this.Name = "LineChart";
51          this.Size = new System.Drawing.Size(552, 390);
52          this.ResumeLayout(false);
53
54        }
55
56        #endregion
57
58        private CanvasUI canvas;
59    }
60}
Note: See TracBrowser for help on using the repository browser.