[683] | 1 | namespace 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 | {
|
---|
[754] | 31 | this.canvasUI1 = new HeuristicLab.Visualization.CanvasUI();
|
---|
| 32 | this.SuspendLayout();
|
---|
| 33 | //
|
---|
| 34 | // canvasUI1
|
---|
| 35 | //
|
---|
[869] | 36 | this.canvasUI1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 37 | this.canvasUI1.Location = new System.Drawing.Point(0, 0);
|
---|
[754] | 38 | this.canvasUI1.MouseEventListener = null;
|
---|
| 39 | this.canvasUI1.Name = "canvasUI1";
|
---|
[869] | 40 | this.canvasUI1.Size = new System.Drawing.Size(552, 390);
|
---|
[754] | 41 | this.canvasUI1.TabIndex = 0;
|
---|
| 42 | this.canvasUI1.Text = "canvasUI1";
|
---|
[928] | 43 | this.canvasUI1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvasUI1_MouseDown);
|
---|
[754] | 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.canvasUI1);
|
---|
| 50 | this.Name = "LineChart";
|
---|
| 51 | this.Size = new System.Drawing.Size(552, 390);
|
---|
| 52 | this.ResumeLayout(false);
|
---|
[684] | 53 |
|
---|
[683] | 54 | }
|
---|
| 55 |
|
---|
| 56 | #endregion
|
---|
[754] | 57 |
|
---|
| 58 | private CanvasUI canvasUI1;
|
---|
[683] | 59 | }
|
---|
| 60 | }
|
---|