/// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.fastLineSeries1 = new Steema.TeeChart.Styles.FastLine();
     this.drawLine1       = new Steema.TeeChart.Tools.DrawLine();
     this.checkBox1       = new System.Windows.Forms.CheckBox();
     this.checkBox2       = new System.Windows.Forms.CheckBox();
     this.checkBox3       = new System.Windows.Forms.CheckBox();
     this.label1          = new System.Windows.Forms.Label();
     this.NumLines        = new System.Windows.Forms.Label();
     this.button1         = new System.Windows.Forms.Button();
     this.label2          = new System.Windows.Forms.Label();
     this.comboBox1       = new System.Windows.Forms.ComboBox();
     this.gridBand1       = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(425, 59);
     this.textBox1.Text = "The Draw Line tool allows the user to draw lines at run-time using the mouse. Lin" +
                          "e pen is customizable. All drawn lines are stored in a Lines array property.\r\n\r\n" +
                          "Example: Draw a line dragging the mouse.";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.comboBox1);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.NumLines);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.checkBox3);
     this.panel1.Controls.Add(this.checkBox2);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Location = new System.Drawing.Point(0, 59);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(425, 79);
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.View3D            = false;
     //
     // tChart1.Header
     //
     this.tChart1.Header.Lines = new string[] {
         "tChart1"
     };
     this.tChart1.Header.Visible = false;
     this.tChart1.Location       = new System.Drawing.Point(0, 138);
     this.tChart1.Name           = "tChart1";
     //
     // tChart1.Panel
     //
     //
     // tChart1.Panel.Brush
     //
     this.tChart1.Panel.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     this.tChart1.Series.Add(this.fastLineSeries1);
     this.tChart1.Size = new System.Drawing.Size(425, 132);
     this.tChart1.Tools.Add(this.drawLine1);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     // fastLineSeries1
     //
     //
     // fastLineSeries1.LinePen
     //
     this.fastLineSeries1.LinePen.Color = System.Drawing.Color.Red;
     //
     // fastLineSeries1.Marks
     //
     //
     // fastLineSeries1.Marks.Symbol
     //
     //
     // fastLineSeries1.Marks.Symbol.Shadow
     //
     this.fastLineSeries1.Marks.Symbol.Shadow.Height  = 1;
     this.fastLineSeries1.Marks.Symbol.Shadow.Visible = true;
     this.fastLineSeries1.Marks.Symbol.Shadow.Width   = 1;
     this.fastLineSeries1.Title = "fastLineSeries1";
     //
     // fastLineSeries1.XValues
     //
     this.fastLineSeries1.XValues.DataMember = "X";
     this.fastLineSeries1.XValues.Order      = Steema.TeeChart.Styles.ValueListOrder.Ascending;
     //
     // fastLineSeries1.YValues
     //
     this.fastLineSeries1.YValues.DataMember = "Y";
     //
     // drawLine1
     //
     this.drawLine1.NewLine += new Steema.TeeChart.Tools.DrawLineEventHandler(this.drawLine1_NewLine);
     this.drawLine1.Select  += new Steema.TeeChart.Tools.DrawLineEventHandler(this.drawLine1_Select);
     //
     // checkBox1
     //
     this.checkBox1.Checked         = true;
     this.checkBox1.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
     this.checkBox1.Location        = new System.Drawing.Point(12, 9);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(116, 20);
     this.checkBox1.TabIndex        = 0;
     this.checkBox1.Text            = "&Active";
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // checkBox2
     //
     this.checkBox2.Checked         = true;
     this.checkBox2.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.checkBox2.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
     this.checkBox2.Location        = new System.Drawing.Point(12, 29);
     this.checkBox2.Name            = "checkBox2";
     this.checkBox2.Size            = new System.Drawing.Size(116, 20);
     this.checkBox2.TabIndex        = 1;
     this.checkBox2.Text            = "&Enable Draw";
     this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // checkBox3
     //
     this.checkBox3.Checked         = true;
     this.checkBox3.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.checkBox3.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
     this.checkBox3.Location        = new System.Drawing.Point(12, 49);
     this.checkBox3.Name            = "checkBox3";
     this.checkBox3.Size            = new System.Drawing.Size(116, 19);
     this.checkBox3.TabIndex        = 2;
     this.checkBox3.Text            = "Enable &Selection";
     this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
     //
     // label1
     //
     this.label1.AutoSize    = true;
     this.label1.Location    = new System.Drawing.Point(122, 7);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(37, 16);
     this.label1.TabIndex    = 3;
     this.label1.Text        = "Lines :";
     this.label1.UseMnemonic = false;
     //
     // NumLines
     //
     this.NumLines.AutoSize    = true;
     this.NumLines.Location    = new System.Drawing.Point(164, 7);
     this.NumLines.Name        = "NumLines";
     this.NumLines.Size        = new System.Drawing.Size(10, 16);
     this.NumLines.TabIndex    = 4;
     this.NumLines.Text        = "0";
     this.NumLines.UseMnemonic = false;
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Location  = new System.Drawing.Point(176, 48);
     this.button1.Name      = "button1";
     this.button1.TabIndex  = 5;
     this.button1.Text      = "&Delete";
     this.button1.Click    += new System.EventHandler(this.button1_Click);
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Location  = new System.Drawing.Point(213, 18);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(76, 16);
     this.label2.TabIndex  = 6;
     this.label2.Text      = "&Mouse button:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.Items.AddRange(new object[] {
         "Left",
         "Right",
         "Middle"
     });
     this.comboBox1.Location              = new System.Drawing.Point(296, 16);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(85, 21);
     this.comboBox1.TabIndex              = 7;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // gridBand1
     //
     this.gridBand1.Axis = this.tChart1.Axes.Left;
     //
     // gridBand1.Band1
     //
     this.gridBand1.Band1.Color = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     //
     // gridBand1.Band2
     //
     this.gridBand1.Band2.Color = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // Tool_DrawLine
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(425, 270);
     this.Name  = "Tool_DrawLine";
     this.Load += new System.EventHandler(this.Tool_DrawLine_Load);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void drawLine1_NewLine(Steema.TeeChart.Tools.DrawLine sender)
 {
     NumLines.Text = this.drawLine1.Lines.Count.ToString();
 }
 private void drawLine1_Select(Steema.TeeChart.Tools.DrawLine sender)
 {
     this.button1.Enabled = true;
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lineSeries1 = new Steema.TeeChart.Styles.Line();
     this.drawLine1   = new Steema.TeeChart.Tools.DrawLine();
     this.label1      = new System.Windows.Forms.Label();
     this.label2      = new System.Windows.Forms.Label();
     this.label3      = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(512, 64);
     this.textBox1.Text = "DrawLine tool introduces OnDraggedLine event. This event is triggered when the us" +
                          "er finishes dragging a line.\r\nTry drawing a line, then clicking and moving it. W" +
                          "hen finished, the event is raised and the label below shows the new line positio" +
                          "n.";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(0, 64);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(512, 48);
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.View3D            = false;
     //
     // tChart1.Header
     //
     this.tChart1.Header.Lines = new string[] {
         "tChart1"
     };
     this.tChart1.Header.Visible = false;
     this.tChart1.Name           = "tChart1";
     //
     // tChart1.Panel
     //
     //
     // tChart1.Panel.Brush
     //
     this.tChart1.Panel.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     this.tChart1.Series.Add(this.lineSeries1);
     this.tChart1.Size = new System.Drawing.Size(512, 181);
     this.tChart1.Tools.Add(this.drawLine1);
     //
     // lineSeries1
     //
     //
     // lineSeries1.Brush
     //
     this.lineSeries1.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(0)), ((System.Byte)(128)), ((System.Byte)(0)));
     //
     // lineSeries1.LinePen
     //
     this.lineSeries1.LinePen.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(0)), ((System.Byte)(77)), ((System.Byte)(0)));
     //
     // lineSeries1.Marks
     //
     //
     // lineSeries1.Marks.Symbol
     //
     //
     // lineSeries1.Marks.Symbol.Shadow
     //
     this.lineSeries1.Marks.Symbol.Shadow.Height  = 1;
     this.lineSeries1.Marks.Symbol.Shadow.Visible = true;
     this.lineSeries1.Marks.Symbol.Shadow.Width   = 1;
     //
     // lineSeries1.Pointer
     //
     this.lineSeries1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     this.lineSeries1.Title         = "lineSeries1";
     //
     // lineSeries1.XValues
     //
     this.lineSeries1.XValues.DataMember = "X";
     this.lineSeries1.XValues.Order      = Steema.TeeChart.Styles.ValueListOrder.Ascending;
     //
     // lineSeries1.YValues
     //
     this.lineSeries1.YValues.DataMember = "Y";
     //
     // drawLine1
     //
     this.drawLine1.EnableDraw   = false;
     this.drawLine1.DraggedLine += new Steema.TeeChart.Tools.DrawLineEventHandler(this.drawLine1_DraggedLine);
     //
     // label1
     //
     this.label1.AutoSize    = true;
     this.label1.Location    = new System.Drawing.Point(11, 8);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(122, 16);
     this.label1.TabIndex    = 0;
     this.label1.Text        = "Dragging line position : ";
     this.label1.UseMnemonic = false;
     //
     // label2
     //
     this.label2.AutoSize    = true;
     this.label2.Location    = new System.Drawing.Point(160, 8);
     this.label2.Name        = "label2";
     this.label2.Size        = new System.Drawing.Size(20, 16);
     this.label2.TabIndex    = 1;
     this.label2.Text        = "0,0";
     this.label2.UseMnemonic = false;
     //
     // label3
     //
     this.label3.AutoSize    = true;
     this.label3.Location    = new System.Drawing.Point(160, 24);
     this.label3.Name        = "label3";
     this.label3.Size        = new System.Drawing.Size(20, 16);
     this.label3.TabIndex    = 2;
     this.label3.Text        = "0,0";
     this.label3.UseMnemonic = false;
     //
     // Tool_DrawLineDragged
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(512, 293);
     this.Name = "Tool_DrawLineDragged";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void drawLine1_DraggedLine(Steema.TeeChart.Tools.DrawLine sender)
 {
     Steema.TeeChart.Tools.DrawLineItem I = drawLine1.Selected;
     label2.Text = "Start: (x: " + I.StartPos.X.ToString("0.00") + ", y: " + I.StartPos.Y.ToString("0.00") + ")";
     label3.Text = "End: (x: " + I.EndPos.X.ToString("0.00") + ", y: " + I.EndPos.Y.ToString("0.00") + ")";
 }
Example #6
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tools_DrawLineEscape));
            this.fastLineSeries1 = new Steema.TeeChart.Styles.FastLine();
            this.drawLine1       = new Steema.TeeChart.Tools.DrawLine();
            this.checkBox1       = new System.Windows.Forms.CheckBox();
            this.checkBox2       = new System.Windows.Forms.CheckBox();
            this.checkBox3       = new System.Windows.Forms.CheckBox();
            this.label1          = new System.Windows.Forms.Label();
            this.NumLines        = new System.Windows.Forms.Label();
            this.gridBand1       = new Steema.TeeChart.Tools.GridBand();
            this.label2          = new System.Windows.Forms.Label();
            this.cbKeys          = new System.Windows.Forms.ComboBox();
            this.panel1.SuspendLayout();
            this.chartContainer.SuspendLayout();
            this.SuspendLayout();
            //
            // textBox1
            //
            this.textBox1.Size = new System.Drawing.Size(425, 59);
            this.textBox1.Text = "Use the new EscapeKey property to select a key you can use to delete a line\r\nwhil" +
                                 "e it is being drawn.";
            //
            // panel1
            //
            this.panel1.Controls.Add(this.cbKeys);
            this.panel1.Controls.Add(this.label2);
            this.panel1.Controls.Add(this.NumLines);
            this.panel1.Controls.Add(this.label1);
            this.panel1.Controls.Add(this.checkBox3);
            this.panel1.Controls.Add(this.checkBox2);
            this.panel1.Controls.Add(this.checkBox1);
            this.panel1.Location = new System.Drawing.Point(0, 59);
            this.panel1.Size     = new System.Drawing.Size(425, 65);
            //
            // tChart1
            //
            //
            //
            //
            this.tChart1.Aspect.View3D = false;
            //
            //
            //
            //
            //
            //
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.Bottom.Labels.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.Bottom.Labels.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.Bottom.Title.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.Bottom.Title.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.Depth.Labels.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.Depth.Labels.Bevel.StringColorTwo = "FF808080";
            this.tChart1.Axes.Depth.LabelsAsSeriesTitles        = true;
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.Depth.Title.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.Depth.Title.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.DepthTop.Labels.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.DepthTop.Labels.Bevel.StringColorTwo = "FF808080";
            this.tChart1.Axes.DepthTop.LabelsAsSeriesTitles        = true;
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.DepthTop.Title.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.DepthTop.Title.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.Left.Labels.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.Left.Labels.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.Left.Title.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.Left.Title.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.Right.Labels.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.Right.Labels.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.Right.Title.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.Right.Title.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.Top.Labels.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.Top.Labels.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Axes.Top.Title.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Axes.Top.Title.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Footer.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Footer.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Header.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Header.Bevel.StringColorTwo = "FF808080";
            this.tChart1.Header.Lines = new string[] {
                "tChart1"
            };
            this.tChart1.Header.Visible = false;
            //
            //
            //
            //
            //
            //
            this.tChart1.Legend.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Legend.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Legend.Title.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Legend.Title.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Panel.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Panel.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            this.tChart1.Panel.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.tChart1.Series.Add(this.fastLineSeries1);
            this.tChart1.Size = new System.Drawing.Size(425, 146);
            //
            //
            //
            //
            //
            //
            this.tChart1.SubFooter.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.SubFooter.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.SubHeader.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.SubHeader.Bevel.StringColorTwo = "FF808080";
            this.tChart1.Tools.Add(this.drawLine1);
            this.tChart1.Tools.Add(this.gridBand1);
            //
            //
            //
            //
            //
            //
            //
            //
            //
            this.tChart1.Walls.Back.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Walls.Back.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Walls.Bottom.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Walls.Bottom.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Walls.Left.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Walls.Left.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.tChart1.Walls.Right.Bevel.StringColorOne = "FFFFFFFF";
            this.tChart1.Walls.Right.Bevel.StringColorTwo = "FF808080";
            //
            // chartContainer
            //
            this.chartContainer.Location = new System.Drawing.Point(0, 124);
            this.chartContainer.Size     = new System.Drawing.Size(425, 146);
            //
            // fastLineSeries1
            //
            this.fastLineSeries1.Color     = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163)))));
            this.fastLineSeries1.ColorEach = false;
            //
            //
            //
            this.fastLineSeries1.LinePen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163)))));
            //
            //
            //
            //
            //
            //
            this.fastLineSeries1.Marks.Bevel.StringColorOne = "FFFFFFFF";
            this.fastLineSeries1.Marks.Bevel.StringColorTwo = "FF808080";
            //
            //
            //
            //
            //
            //
            this.fastLineSeries1.Marks.Symbol.Bevel.StringColorOne = "FFFFFFFF";
            this.fastLineSeries1.Marks.Symbol.Bevel.StringColorTwo = "FF808080";
            this.fastLineSeries1.Title      = "fastLineSeries1";
            this.fastLineSeries1.TreatNulls = Steema.TeeChart.Styles.TreatNullsStyle.Ignore;
            //
            //
            //
            this.fastLineSeries1.XValues.DataMember = "X";
            this.fastLineSeries1.XValues.Order      = Steema.TeeChart.Styles.ValueListOrder.Ascending;
            //
            //
            //
            this.fastLineSeries1.YValues.DataMember = "Y";
            //
            // drawLine1
            //
            this.drawLine1.Style    = Steema.TeeChart.Tools.DrawLineStyle.Line;
            this.drawLine1.NewLine += new Steema.TeeChart.Tools.DrawLineEventHandler(this.drawLine1_NewLine);
            //
            // checkBox1
            //
            this.checkBox1.Checked         = true;
            this.checkBox1.CheckState      = System.Windows.Forms.CheckState.Checked;
            this.checkBox1.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
            this.checkBox1.Location        = new System.Drawing.Point(12, 9);
            this.checkBox1.Name            = "checkBox1";
            this.checkBox1.Size            = new System.Drawing.Size(116, 20);
            this.checkBox1.TabIndex        = 0;
            this.checkBox1.Text            = "&Active";
            this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
            //
            // checkBox2
            //
            this.checkBox2.Checked         = true;
            this.checkBox2.CheckState      = System.Windows.Forms.CheckState.Checked;
            this.checkBox2.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
            this.checkBox2.Location        = new System.Drawing.Point(81, 9);
            this.checkBox2.Name            = "checkBox2";
            this.checkBox2.Size            = new System.Drawing.Size(116, 20);
            this.checkBox2.TabIndex        = 1;
            this.checkBox2.Text            = "&Enable Draw";
            this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
            //
            // checkBox3
            //
            this.checkBox3.Checked         = true;
            this.checkBox3.CheckState      = System.Windows.Forms.CheckState.Checked;
            this.checkBox3.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
            this.checkBox3.Location        = new System.Drawing.Point(179, 10);
            this.checkBox3.Name            = "checkBox3";
            this.checkBox3.Size            = new System.Drawing.Size(116, 19);
            this.checkBox3.TabIndex        = 2;
            this.checkBox3.Text            = "Enable &Selection";
            this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
            //
            // label1
            //
            this.label1.AutoSize    = true;
            this.label1.Location    = new System.Drawing.Point(301, 13);
            this.label1.Name        = "label1";
            this.label1.Size        = new System.Drawing.Size(38, 13);
            this.label1.TabIndex    = 3;
            this.label1.Text        = "Lines :";
            this.label1.UseMnemonic = false;
            //
            // NumLines
            //
            this.NumLines.AutoSize    = true;
            this.NumLines.Location    = new System.Drawing.Point(343, 13);
            this.NumLines.Name        = "NumLines";
            this.NumLines.Size        = new System.Drawing.Size(13, 13);
            this.NumLines.TabIndex    = 4;
            this.NumLines.Text        = "0";
            this.NumLines.UseMnemonic = false;
            //
            // gridBand1
            //
            this.gridBand1.Axis = this.tChart1.Axes.Left;
            //
            //
            //
            this.gridBand1.Band1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            //
            //
            //
            this.gridBand1.Band2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            //
            // label2
            //
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(12, 38);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(28, 13);
            this.label2.TabIndex = 5;
            this.label2.Text     = "Key:";
            //
            // cbKeys
            //
#if VS2005
            this.cbKeys.FormattingEnabled = true;
#endif
            this.cbKeys.Location              = new System.Drawing.Point(46, 35);
            this.cbKeys.Name                  = "cbKeys";
            this.cbKeys.Size                  = new System.Drawing.Size(121, 21);
            this.cbKeys.TabIndex              = 6;
            this.cbKeys.SelectedIndexChanged += new System.EventHandler(this.cbKeys_SelectedIndexChanged);
            //
            // Tools_DrawLineEscape
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(425, 270);
            this.Name = "Tools_DrawLineEscape";
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.chartContainer.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();
        }