public TowerChart(ChartView chartView)
        {
            _chartView = chartView;
            _tower     = new Tower(_chartView.Chart);
            _rotate    = new Steema.TeeChart.Tools.Rotate(_chartView.Chart);

            var colors = new Variables.Variables().GetPaletteBasic;

            _tower.UseColorRange = false;
            _tower.UsePalette    = true;

            _tower.FillSampleValues(6);
            _chartView.Chart.Aspect.View3D = true;
            _tower.Palette.Clear();

            _tower.ClearPalette();
            _tower.AddPalette(1, colors[0]);
            _tower.AddPalette(2, colors[1]);
            _tower.AddPalette(3, colors[2]);
            _tower.AddPalette(4, colors[3]);
            _tower.AddPalette(5, colors[4]);
            _tower.Chart.Aspect.Chart3DPercent = 30;
            _tower.Chart.Walls.Left.Visible    = true;
            _tower.Chart.Walls.Bottom.Visible  = true;

            _rotate.Active = true;
            _rotate.Style  = Steema.TeeChart.Tools.RotateStyles.All;

            _chartView.Chart.Axes.Left.Automatic   = true;
            _chartView.Chart.Axes.Bottom.Automatic = true;
        }
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.surface1 = new Steema.TeeChart.Styles.Surface();
			this.checkBox1 = new System.Windows.Forms.CheckBox();
			this.button1 = new System.Windows.Forms.Button();
			this.rotate1 = new Steema.TeeChart.Tools.Rotate();
			this.panel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// textBox1
			// 
			this.textBox1.Name = "textBox1";
			this.textBox1.Text = "Surface series can now display \"sides\", using the SideBrush property.\r\nExample: \r" +
				"\nsurface1.SideBrush.Visible = true;\r\nsurface1.SideBrush.Color = Color.Blue;";
			// 
			// panel1
			// 
			this.panel1.Controls.Add(this.button1);
			this.panel1.Controls.Add(this.checkBox1);
			this.panel1.Name = "panel1";
			// 
			// tChart1
			// 
			// 
			// tChart1.Aspect
			// 
			this.tChart1.Aspect.Chart3DPercent = 100;
			this.tChart1.Aspect.Elevation = 348;
			this.tChart1.Aspect.Orthogonal = false;
			this.tChart1.Aspect.Perspective = 0;
			this.tChart1.Aspect.Rotation = 330;
			this.tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
			this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
			this.tChart1.Aspect.Zoom = 63;
			// 
			// tChart1.Header
			// 
			this.tChart1.Header.Lines = new string[] {
																								 "tChart1"};
			this.tChart1.Header.Visible = false;
			// 
			// tChart1.Legend
			// 
			this.tChart1.Legend.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.surface1);
			this.tChart1.Tools.Add(this.rotate1);
			// 
			// tChart1.Walls
			// 
			// 
			// tChart1.Walls.Back
			// 
			// 
			// tChart1.Walls.Back.Brush
			// 
			this.tChart1.Walls.Back.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192)));
			// 
			// tChart1.Walls.Back.Pen
			// 
			this.tChart1.Walls.Back.Pen.Visible = false;
			this.tChart1.Walls.Back.Size = 5;
			this.tChart1.Walls.Back.Transparent = false;
			this.tChart1.Walls.Back.Visible = false;
			// 
			// tChart1.Walls.Bottom
			// 
			// 
			// tChart1.Walls.Bottom.Pen
			// 
			this.tChart1.Walls.Bottom.Pen.Visible = false;
			this.tChart1.Walls.Bottom.Size = 5;
			// 
			// tChart1.Walls.Left
			// 
			// 
			// tChart1.Walls.Left.Pen
			// 
			this.tChart1.Walls.Left.Pen.Visible = false;
			this.tChart1.Walls.Left.Size = 5;
			// 
			// surface1
			// 
			// 
			// surface1.Brush
			// 
			this.surface1.Brush.Color = System.Drawing.Color.Red;
			// 
			// surface1.Marks
			// 
			// 
			// surface1.Marks.Symbol
			// 
			// 
			// surface1.Marks.Symbol.Shadow
			// 
			this.surface1.Marks.Symbol.Shadow.Height = 1;
			this.surface1.Marks.Symbol.Shadow.Visible = true;
			this.surface1.Marks.Symbol.Shadow.Width = 1;
			this.surface1.PaletteMin = 0;
			this.surface1.PaletteStep = 0;
			this.surface1.Title = "surface1";
			// 
			// surface1.XValues
			// 
			this.surface1.XValues.DataMember = "X";
			// 
			// surface1.YValues
			// 
			this.surface1.YValues.DataMember = "Y";
			// 
			// surface1.ZValues
			// 
			this.surface1.ZValues.DataMember = "Z";
			// 
			// 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(16, 8);
			this.checkBox1.Name = "checkBox1";
			this.checkBox1.TabIndex = 0;
			this.checkBox1.Text = "Sides visible";
			this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
			// 
			// button1
			// 
			this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.button1.Location = new System.Drawing.Point(136, 8);
			this.button1.Name = "button1";
			this.button1.Size = new System.Drawing.Size(96, 23);
			this.button1.TabIndex = 1;
			this.button1.Text = "Edit side brush";
			this.button1.Click += new System.EventHandler(this.button1_Click);
			// 
			// Surface_Sides
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(440, 317);
			this.Name = "Surface_Sides";
			this.panel1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.triSurfaceSeries1 = new Steema.TeeChart.Styles.TriSurface();
     this.rotate1           = new Steema.TeeChart.Tools.Rotate();
     this.button1           = new System.Windows.Forms.Button();
     this.gridBand1         = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(466, 63);
     this.textBox1.Text = "A TriSurface series draws triangles using all XYZ points.\r\n\r\nIncludes a pen to dr" +
                          "aw a line around the point boundaries. Inherits all properties and methods from " +
                          "Grid3D series (palette, AddXYZ, etc).";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.button1);
     this.panel1.Location = new System.Drawing.Point(0, 63);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(466, 41);
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.Chart3DPercent    = 70;
     this.tChart1.Aspect.Elevation         = 334;
     this.tChart1.Aspect.Orthogonal        = false;
     this.tChart1.Aspect.Perspective       = 36;
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.Zoom = 66;
     //
     // tChart1.Axes
     //
     //
     // tChart1.Axes.Depth
     //
     this.tChart1.Axes.Depth.Visible = true;
     //
     // tChart1.Header
     //
     this.tChart1.Header.Lines = new string[] {
         "tChart1"
     };
     this.tChart1.Header.Visible = false;
     //
     // tChart1.Legend
     //
     this.tChart1.Legend.MaxNumRows = 8;
     this.tChart1.Location          = new System.Drawing.Point(0, 104);
     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.triSurfaceSeries1);
     this.tChart1.Size = new System.Drawing.Size(466, 182);
     this.tChart1.Tools.Add(this.rotate1);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Bottom
     //
     //
     // tChart1.Walls.Bottom.Brush
     //
     this.tChart1.Walls.Bottom.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Brush.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Bottom.Pen
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     this.tChart1.Walls.Bottom.Size        = 5;
     //
     // tChart1.Walls.Left
     //
     //
     // tChart1.Walls.Left.Brush
     //
     this.tChart1.Walls.Left.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(224)));
     //
     // tChart1.Walls.Left.Gradient
     //
     this.tChart1.Walls.Left.Brush.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Left.Gradient
     //
     this.tChart1.Walls.Left.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Left.Pen
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     this.tChart1.Walls.Left.Size        = 5;
     //
     // triSurfaceSeries1
     //
     //
     // triSurfaceSeries1.Brush
     //
     this.triSurfaceSeries1.Brush.Color   = System.Drawing.Color.Red;
     this.triSurfaceSeries1.EndColor      = System.Drawing.Color.LightSkyBlue;
     this.triSurfaceSeries1.HideTriangles = false;
     //
     // triSurfaceSeries1.Marks
     //
     //
     // triSurfaceSeries1.Marks.Symbol
     //
     //
     // triSurfaceSeries1.Marks.Symbol.Shadow
     //
     this.triSurfaceSeries1.Marks.Symbol.Shadow.Height  = 1;
     this.triSurfaceSeries1.Marks.Symbol.Shadow.Visible = true;
     this.triSurfaceSeries1.Marks.Symbol.Shadow.Width   = 1;
     this.triSurfaceSeries1.PaletteMin  = 0;
     this.triSurfaceSeries1.PaletteStep = 0;
     this.triSurfaceSeries1.StartColor  = System.Drawing.Color.Green;
     this.triSurfaceSeries1.Title       = "triSurfaceSeries1";
     //
     // triSurfaceSeries1.XValues
     //
     this.triSurfaceSeries1.XValues.DataMember = "X";
     //
     // triSurfaceSeries1.YValues
     //
     this.triSurfaceSeries1.YValues.DataMember = "Y";
     //
     // triSurfaceSeries1.ZValues
     //
     this.triSurfaceSeries1.ZValues.DataMember = "Z";
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Location  = new System.Drawing.Point(16, 8);
     this.button1.Name      = "button1";
     this.button1.TabIndex  = 0;
     this.button1.Text      = "&Edit...";
     this.button1.Click    += new System.EventHandler(this.button1_Click);
     //
     // 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)));
     //
     // SeriesType_TriSurface
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(466, 286);
     this.Name = "SeriesType_TriSurface";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.surfaceSeries1 = new Steema.TeeChart.Styles.Surface();
     this.checkBox1      = new System.Windows.Forms.CheckBox();
     this.rotate1        = new Steema.TeeChart.Tools.Rotate();
     this.button1        = new System.Windows.Forms.Button();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(466, 48);
     this.textBox1.Text = "The Rotate tool changes the elevation and rotation of charts when dragging the mo" +
                          "use over a chart.";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Location = new System.Drawing.Point(0, 48);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(466, 41);
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.Chart3DPercent    = 100;
     this.tChart1.Aspect.Elevation         = 353;
     this.tChart1.Aspect.Orthogonal        = false;
     this.tChart1.Aspect.Perspective       = 51;
     this.tChart1.Aspect.Rotation          = 312;
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.Zoom = 59;
     //
     // tChart1.Axes
     //
     //
     // tChart1.Axes.Depth
     //
     this.tChart1.Axes.Depth.Visible = true;
     //
     // tChart1.Header
     //
     this.tChart1.Header.Lines = new string[] {
         "Rotate tool demo"
     };
     //
     // tChart1.Legend
     //
     this.tChart1.Legend.Alignment = Steema.TeeChart.LegendAlignments.Top;
     this.tChart1.Legend.Visible   = false;
     this.tChart1.Location         = new System.Drawing.Point(0, 89);
     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.surfaceSeries1);
     this.tChart1.Size = new System.Drawing.Size(466, 197);
     this.tChart1.Tools.Add(this.rotate1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Bottom
     //
     //
     // tChart1.Walls.Bottom.Brush
     //
     this.tChart1.Walls.Bottom.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Brush.Gradient.Transparency = 50;
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Gradient.Transparency = 50;
     //
     // tChart1.Walls.Bottom.Pen
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     this.tChart1.Walls.Bottom.Size        = 5;
     //
     // tChart1.Walls.Left
     //
     //
     // tChart1.Walls.Left.Brush
     //
     this.tChart1.Walls.Left.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(224)));
     //
     // tChart1.Walls.Left.Gradient
     //
     this.tChart1.Walls.Left.Brush.Gradient.Transparency = 50;
     //
     // tChart1.Walls.Left.Gradient
     //
     this.tChart1.Walls.Left.Gradient.Transparency = 50;
     //
     // tChart1.Walls.Left.Pen
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     this.tChart1.Walls.Left.Size        = 5;
     //
     // surfaceSeries1
     //
     //
     // surfaceSeries1.Brush
     //
     this.surfaceSeries1.Brush.Color = System.Drawing.Color.Red;
     //
     // surfaceSeries1.Marks
     //
     //
     // surfaceSeries1.Marks.Symbol
     //
     //
     // surfaceSeries1.Marks.Symbol.Shadow
     //
     this.surfaceSeries1.Marks.Symbol.Shadow.Height  = 1;
     this.surfaceSeries1.Marks.Symbol.Shadow.Visible = true;
     this.surfaceSeries1.Marks.Symbol.Shadow.Width   = 1;
     this.surfaceSeries1.PaletteMin  = 0;
     this.surfaceSeries1.PaletteStep = 0;
     this.surfaceSeries1.Title       = "surface1";
     //
     // surfaceSeries1.XValues
     //
     this.surfaceSeries1.XValues.DataMember = "X";
     //
     // surfaceSeries1.YValues
     //
     this.surfaceSeries1.YValues.DataMember = "Y";
     //
     // surfaceSeries1.ZValues
     //
     this.surfaceSeries1.ZValues.DataMember = "Z";
     //
     // 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(20, 8);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(53, 21);
     this.checkBox1.TabIndex        = 0;
     this.checkBox1.Text            = "&Active";
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Location  = new System.Drawing.Point(100, 8);
     this.button1.Name      = "button1";
     this.button1.TabIndex  = 1;
     this.button1.Text      = "&Edit tool...";
     this.button1.Click    += new System.EventHandler(this.button1_Click);
     //
     // Tool_Rotate
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(466, 286);
     this.Name = "Tool_Rotate";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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(Tool_RotateOutline));
     this.horizArea1 = new Steema.TeeChart.Styles.HorizArea();
     this.buttonPen1 = new Steema.TeeChart.ButtonPen();
     this.checkBox1  = new System.Windows.Forms.CheckBox();
     this.rotate1    = new Steema.TeeChart.Tools.Rotate();
     this.panel1.SuspendLayout();
     this.chartContainer.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Size = new System.Drawing.Size(360, 73);
     this.textBox1.Text = "Rotate tool can display a wireframe while rotating, instead of re-painting the wh" +
                          "ole chart.\r\n\r\nClick and drag the chart to see the wireframe.";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Controls.Add(this.buttonPen1);
     this.panel1.Size = new System.Drawing.Size(360, 39);
     //
     // tChart1
     //
     //
     //
     //
     this.tChart1.Aspect.Chart3DPercent = 95;
     this.tChart1.Aspect.Orthogonal     = false;
     this.tChart1.Aspect.ZOffset        = 0;
     this.tChart1.Aspect.Zoom           = 87;
     this.tChart1.Aspect.ZoomFloat      = 87;
     this.tChart1.Cursor = System.Windows.Forms.Cursors.Default;
     //
     //
     //
     this.tChart1.Header.Lines = new string[] {
         "Rotate tool outline"
     };
     //
     //
     //
     this.tChart1.Legend.Visible = false;
     //
     //
     //
     //
     //
     //
     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.horizArea1);
     this.tChart1.Size = new System.Drawing.Size(360, 189);
     this.tChart1.Tools.Add(this.rotate1);
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Back.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Right.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.tChart1.Walls.Right.Visible     = true;
     //
     // chartContainer
     //
     this.chartContainer.Size = new System.Drawing.Size(360, 189);
     //
     // horizArea1
     //
     //
     //
     //
     this.horizArea1.AreaBrush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163)))));
     //
     //
     //
     this.horizArea1.Gradient.Direction    = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.horizArea1.Gradient.StartColor   = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163)))));
     this.horizArea1.Gradient.Transparency = 20;
     //
     //
     //
     this.horizArea1.AreaLines.Color = System.Drawing.Color.FromArgb(((int)(((byte)(41)))), ((int)(((byte)(61)))), ((int)(((byte)(98)))));
     //
     //
     //
     this.horizArea1.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163)))));
     //
     //
     //
     this.horizArea1.TopGradient.Transparency = 100;
     this.horizArea1.Color     = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163)))));
     this.horizArea1.ColorEach = false;
     //
     //
     //
     this.horizArea1.LinePen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(41)))), ((int)(((byte)(61)))), ((int)(((byte)(98)))));
     //
     //
     //
     //
     //
     //
     this.horizArea1.Marks.Callout.ArrowHead     = Steema.TeeChart.Styles.ArrowHeadStyles.None;
     this.horizArea1.Marks.Callout.ArrowHeadSize = 8;
     //
     //
     //
     this.horizArea1.Marks.Callout.Brush.Color = System.Drawing.Color.Black;
     this.horizArea1.Marks.Callout.Distance    = 0;
     this.horizArea1.Marks.Callout.Draw3D      = false;
     this.horizArea1.Marks.Callout.Length      = 10;
     this.horizArea1.Marks.Callout.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     this.horizArea1.Marks.Callout.Visible     = false;
     //
     //
     //
     this.horizArea1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     this.horizArea1.Title         = "horizArea1";
     //
     //
     //
     this.horizArea1.XValues.DataMember = "X";
     //
     //
     //
     this.horizArea1.YValues.DataMember = "Y";
     this.horizArea1.YValues.Order      = Steema.TeeChart.Styles.ValueListOrder.Ascending;
     //
     // buttonPen1
     //
     this.buttonPen1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonPen1.Location  = new System.Drawing.Point(24, 8);
     this.buttonPen1.Name      = "buttonPen1";
     this.buttonPen1.Size      = new System.Drawing.Size(80, 24);
     this.buttonPen1.TabIndex  = 1;
     this.buttonPen1.Text      = "Outline...";
     //
     // 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(120, 12);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(88, 16);
     this.checkBox1.TabIndex        = 2;
     this.checkBox1.Text            = "Draw outline";
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // Tool_RotateOutline
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(360, 301);
     this.Name = "Tool_RotateOutline";
     this.panel1.ResumeLayout(false);
     this.chartContainer.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.surfaceSeries1 = new Steema.TeeChart.Styles.Surface();
     this.button1        = new System.Windows.Forms.Button();
     this.gridTranspose1 = new Steema.TeeChart.Tools.GridTranspose();
     this.rotate1        = new Steema.TeeChart.Tools.Rotate();
     this.checkBox1      = new System.Windows.Forms.CheckBox();
     this.gridBand1      = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(432, 63);
     this.textBox1.Text = "3D Transpose tool \"rotates\" a 3D series 90 degrees. It will exchange x with z val" +
                          "ues.  Works with any Grid3D series (surface, etc).\r\nA similar effect can be obta" +
                          "ined setting the Bottom and Depth axes Inverted property to true.";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Location = new System.Drawing.Point(0, 63);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(432, 41);
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.Chart3DPercent    = 50;
     this.tChart1.Aspect.Elevation         = 339;
     this.tChart1.Aspect.Orthogonal        = false;
     this.tChart1.Aspect.Perspective       = 100;
     this.tChart1.Aspect.Rotation          = 324;
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.Zoom = 66;
     //
     // tChart1.Header
     //
     this.tChart1.Header.Lines = new string[] {
         "tChart1"
     };
     this.tChart1.Header.Visible = false;
     //
     // tChart1.Legend
     //
     this.tChart1.Legend.MaxNumRows = 8;
     this.tChart1.Location          = new System.Drawing.Point(0, 104);
     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.surfaceSeries1);
     this.tChart1.Size = new System.Drawing.Size(432, 213);
     this.tChart1.Tools.Add(this.gridTranspose1);
     this.tChart1.Tools.Add(this.rotate1);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Bottom
     //
     //
     // tChart1.Walls.Bottom.Brush
     //
     this.tChart1.Walls.Bottom.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Brush.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Bottom.Pen
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     this.tChart1.Walls.Bottom.Size        = 3;
     //
     // tChart1.Walls.Left
     //
     //
     // tChart1.Walls.Left.Brush
     //
     this.tChart1.Walls.Left.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(224)));
     //
     // tChart1.Walls.Left.Gradient
     //
     this.tChart1.Walls.Left.Brush.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Left.Gradient
     //
     this.tChart1.Walls.Left.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Left.Pen
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     this.tChart1.Walls.Left.Size        = 3;
     //
     // surfaceSeries1
     //
     //
     // surfaceSeries1.Brush
     //
     this.surfaceSeries1.Brush.Color = System.Drawing.Color.Red;
     //
     // surfaceSeries1.Marks
     //
     //
     // surfaceSeries1.Marks.Symbol
     //
     //
     // surfaceSeries1.Marks.Symbol.Shadow
     //
     this.surfaceSeries1.Marks.Symbol.Shadow.Height  = 1;
     this.surfaceSeries1.Marks.Symbol.Shadow.Visible = true;
     this.surfaceSeries1.Marks.Symbol.Shadow.Width   = 1;
     this.surfaceSeries1.MidColor    = System.Drawing.Color.FromArgb(((System.Byte)(204)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(128)));
     this.surfaceSeries1.NumXValues  = 25;
     this.surfaceSeries1.NumZValues  = 25;
     this.surfaceSeries1.PaletteMin  = 0;
     this.surfaceSeries1.PaletteStep = 0;
     this.surfaceSeries1.StartColor  = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(0)), ((System.Byte)(128)), ((System.Byte)(0)));
     this.surfaceSeries1.Title       = "surfaceSeries1";
     //
     // surfaceSeries1.XValues
     //
     this.surfaceSeries1.XValues.DataMember = "X";
     //
     // surfaceSeries1.YValues
     //
     this.surfaceSeries1.YValues.DataMember = "Y";
     //
     // surfaceSeries1.ZValues
     //
     this.surfaceSeries1.ZValues.DataMember = "Z";
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Location  = new System.Drawing.Point(14, 6);
     this.button1.Name      = "button1";
     this.button1.TabIndex  = 0;
     this.button1.Text      = "&Transpose";
     this.button1.Click    += new System.EventHandler(this.button1_Click);
     //
     // gridTranspose1
     //
     this.gridTranspose1.Series = this.surfaceSeries1;
     //
     // 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(114, 8);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(86, 21);
     this.checkBox1.TabIndex        = 1;
     this.checkBox1.Text            = "&Rotate tool";
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // gridBand1
     //
     this.gridBand1.Axis = this.tChart1.Axes.Left;
     //
     // gridBand1.Band1
     //
     this.gridBand1.Band1.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     //
     // gridBand1.Band2
     //
     this.gridBand1.Band2.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // Tool_3DTranspose
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(432, 317);
     this.Name = "Tool_3DTranspose";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.surfaceSeries1 = new Steema.TeeChart.Styles.Surface();
     this.comboBox1      = new System.Windows.Forms.ComboBox();
     this.rotate1        = new Steema.TeeChart.Tools.Rotate();
     this.label1         = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(399, 56);
     this.textBox1.TabIndex = 0;
     this.textBox1.Text     = "Surface palette can be of several types: Pale, Strong, Gray scale, Inverted gray " +
                              "and Rainbow\r\n\r\nExample: surfaceSeries1.PaletteStyle = Steema.TeeChart.Styles.Pal" +
                              "etteStyles.Rainbow;";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.comboBox1);
     this.panel1.Location = new System.Drawing.Point(0, 56);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(399, 35);
     this.panel1.TabIndex = 1;
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.Chart3DPercent    = 90;
     this.tChart1.Aspect.Elevation         = 312;
     this.tChart1.Aspect.Orthogonal        = false;
     this.tChart1.Aspect.Perspective       = 62;
     this.tChart1.Aspect.Rotation          = 330;
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.VertOffset        = -20;
     this.tChart1.Aspect.Zoom = 46;
     //
     // tChart1.Axes
     //
     //
     // tChart1.Axes.Bottom
     //
     //
     // tChart1.Axes.Bottom.Grid
     //
     this.tChart1.Axes.Bottom.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Bottom.Labels
     //
     //
     // tChart1.Axes.Bottom.Labels.Font
     //
     //
     // tChart1.Axes.Bottom.Labels.Font.Shadow
     //
     this.tChart1.Axes.Bottom.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Labels.Shadow
     //
     this.tChart1.Axes.Bottom.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Title
     //
     //
     // tChart1.Axes.Bottom.Title.Font
     //
     //
     // tChart1.Axes.Bottom.Title.Font.Shadow
     //
     this.tChart1.Axes.Bottom.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Title.Shadow
     //
     this.tChart1.Axes.Bottom.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth
     //
     //
     // tChart1.Axes.Depth.Grid
     //
     this.tChart1.Axes.Depth.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Depth.Labels
     //
     //
     // tChart1.Axes.Depth.Labels.Font
     //
     //
     // tChart1.Axes.Depth.Labels.Font.Shadow
     //
     this.tChart1.Axes.Depth.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Labels.Shadow
     //
     this.tChart1.Axes.Depth.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Title
     //
     //
     // tChart1.Axes.Depth.Title.Font
     //
     //
     // tChart1.Axes.Depth.Title.Font.Shadow
     //
     this.tChart1.Axes.Depth.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Title.Shadow
     //
     this.tChart1.Axes.Depth.Title.Shadow.Visible = false;
     this.tChart1.Axes.Depth.Visible = true;
     //
     // tChart1.Axes.DepthTop
     //
     //
     // tChart1.Axes.DepthTop.Grid
     //
     this.tChart1.Axes.DepthTop.Grid.ZPosition = 0;
     //
     // tChart1.Axes.DepthTop.Labels
     //
     //
     // tChart1.Axes.DepthTop.Labels.Font
     //
     //
     // tChart1.Axes.DepthTop.Labels.Font.Shadow
     //
     this.tChart1.Axes.DepthTop.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Labels.Shadow
     //
     this.tChart1.Axes.DepthTop.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Title
     //
     //
     // tChart1.Axes.DepthTop.Title.Font
     //
     //
     // tChart1.Axes.DepthTop.Title.Font.Shadow
     //
     this.tChart1.Axes.DepthTop.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Title.Shadow
     //
     this.tChart1.Axes.DepthTop.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Left
     //
     //
     // tChart1.Axes.Left.Grid
     //
     this.tChart1.Axes.Left.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Left.Labels
     //
     //
     // tChart1.Axes.Left.Labels.Font
     //
     //
     // tChart1.Axes.Left.Labels.Font.Shadow
     //
     this.tChart1.Axes.Left.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Labels.Shadow
     //
     this.tChart1.Axes.Left.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Title
     //
     //
     // tChart1.Axes.Left.Title.Font
     //
     //
     // tChart1.Axes.Left.Title.Font.Shadow
     //
     this.tChart1.Axes.Left.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Title.Shadow
     //
     this.tChart1.Axes.Left.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Right
     //
     //
     // tChart1.Axes.Right.Grid
     //
     this.tChart1.Axes.Right.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Right.Labels
     //
     //
     // tChart1.Axes.Right.Labels.Font
     //
     //
     // tChart1.Axes.Right.Labels.Font.Shadow
     //
     this.tChart1.Axes.Right.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Labels.Shadow
     //
     this.tChart1.Axes.Right.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Title
     //
     //
     // tChart1.Axes.Right.Title.Font
     //
     //
     // tChart1.Axes.Right.Title.Font.Shadow
     //
     this.tChart1.Axes.Right.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Title.Shadow
     //
     this.tChart1.Axes.Right.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Top
     //
     //
     // tChart1.Axes.Top.Grid
     //
     this.tChart1.Axes.Top.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Top.Labels
     //
     //
     // tChart1.Axes.Top.Labels.Font
     //
     //
     // tChart1.Axes.Top.Labels.Font.Shadow
     //
     this.tChart1.Axes.Top.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Labels.Shadow
     //
     this.tChart1.Axes.Top.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Title
     //
     //
     // tChart1.Axes.Top.Title.Font
     //
     //
     // tChart1.Axes.Top.Title.Font.Shadow
     //
     this.tChart1.Axes.Top.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Title.Shadow
     //
     this.tChart1.Axes.Top.Title.Shadow.Visible = false;
     this.tChart1.BackColor = System.Drawing.Color.Transparent;
     //
     // tChart1.Footer
     //
     //
     // tChart1.Footer.Font
     //
     //
     // tChart1.Footer.Font.Shadow
     //
     this.tChart1.Footer.Font.Shadow.Visible = false;
     //
     // tChart1.Footer.Shadow
     //
     this.tChart1.Footer.Shadow.Visible = false;
     //
     // tChart1.Header
     //
     //
     // tChart1.Header.Font
     //
     //
     // tChart1.Header.Font.Shadow
     //
     this.tChart1.Header.Font.Shadow.Visible = false;
     this.tChart1.Header.Lines = new string[] {
         ""
     };
     //
     // tChart1.Header.Shadow
     //
     this.tChart1.Header.Shadow.Visible = false;
     //
     // tChart1.Legend
     //
     //
     // tChart1.Legend.Font
     //
     //
     // tChart1.Legend.Font.Shadow
     //
     this.tChart1.Legend.Font.Shadow.Visible = false;
     this.tChart1.Legend.MaxNumRows          = 8;
     //
     // tChart1.Legend.Pen
     //
     this.tChart1.Legend.Pen.Visible = false;
     this.tChart1.Legend.ResizeChart = false;
     //
     // tChart1.Legend.Symbol
     //
     this.tChart1.Legend.Symbol.Continous  = true;
     this.tChart1.Legend.Symbol.DefaultPen = false;
     this.tChart1.Legend.Symbol.Position   = Steema.TeeChart.LegendSymbolPosition.Right;
     //
     // tChart1.Legend.Title
     //
     //
     // tChart1.Legend.Title.Font
     //
     this.tChart1.Legend.Title.Font.Bold = true;
     //
     // tChart1.Legend.Title.Font.Shadow
     //
     this.tChart1.Legend.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Legend.Title.Pen
     //
     this.tChart1.Legend.Title.Pen.Visible = false;
     //
     // tChart1.Legend.Title.Shadow
     //
     this.tChart1.Legend.Title.Shadow.Visible = false;
     this.tChart1.Location = new System.Drawing.Point(0, 91);
     this.tChart1.Name     = "tChart1";
     //
     // tChart1.Panel
     //
     //
     // tChart1.Panel.Brush
     //
     this.tChart1.Panel.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     //
     // tChart1.Panel.Gradient
     //
     this.tChart1.Panel.Brush.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.tChart1.Panel.Brush.Gradient.Visible    = true;
     //
     // tChart1.Panel.Gradient
     //
     this.tChart1.Panel.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.tChart1.Panel.Gradient.Visible    = true;
     //
     // tChart1.Panel.Pen
     //
     this.tChart1.Panel.Pen.Color   = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(128)));
     this.tChart1.Panel.Pen.Visible = true;
     this.tChart1.Panel.Pen.Width   = 2;
     //
     // tChart1.Panel.Shadow
     //
     this.tChart1.Panel.Shadow.Visible = false;
     this.tChart1.Series.Add(this.surfaceSeries1);
     this.tChart1.Size = new System.Drawing.Size(399, 165);
     //
     // tChart1.SubFooter
     //
     //
     // tChart1.SubFooter.Font
     //
     //
     // tChart1.SubFooter.Font.Shadow
     //
     this.tChart1.SubFooter.Font.Shadow.Visible = false;
     //
     // tChart1.SubFooter.Shadow
     //
     this.tChart1.SubFooter.Shadow.Visible = false;
     //
     // tChart1.SubHeader
     //
     //
     // tChart1.SubHeader.Font
     //
     //
     // tChart1.SubHeader.Font.Shadow
     //
     this.tChart1.SubHeader.Font.Shadow.Visible = false;
     //
     // tChart1.SubHeader.Shadow
     //
     this.tChart1.SubHeader.Shadow.Visible = false;
     this.tChart1.TabIndex = 2;
     this.tChart1.Tools.Add(this.rotate1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Back
     //
     this.tChart1.Walls.Back.AutoHide = false;
     //
     // tChart1.Walls.Back.Brush
     //
     this.tChart1.Walls.Back.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192)));
     //
     // tChart1.Walls.Back.Pen
     //
     this.tChart1.Walls.Back.Pen.Visible = false;
     //
     // tChart1.Walls.Back.Shadow
     //
     this.tChart1.Walls.Back.Shadow.Visible = false;
     this.tChart1.Walls.Back.Size           = 4;
     this.tChart1.Walls.Back.Transparent    = false;
     //
     // tChart1.Walls.Bottom
     //
     this.tChart1.Walls.Bottom.AutoHide = false;
     //
     // tChart1.Walls.Bottom.Brush
     //
     this.tChart1.Walls.Bottom.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Brush.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Bottom.Pen
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     //
     // tChart1.Walls.Bottom.Shadow
     //
     this.tChart1.Walls.Bottom.Shadow.Visible = false;
     this.tChart1.Walls.Bottom.Size           = 5;
     //
     // tChart1.Walls.Left
     //
     this.tChart1.Walls.Left.AutoHide = false;
     //
     // tChart1.Walls.Left.Brush
     //
     this.tChart1.Walls.Left.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(224)));
     //
     // tChart1.Walls.Left.Pen
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     //
     // tChart1.Walls.Left.Shadow
     //
     this.tChart1.Walls.Left.Shadow.Visible = false;
     this.tChart1.Walls.Left.Size           = 4;
     //
     // tChart1.Walls.Right
     //
     this.tChart1.Walls.Right.AutoHide = false;
     //
     // tChart1.Walls.Right.Shadow
     //
     this.tChart1.Walls.Right.Shadow.Visible = false;
     //
     // surfaceSeries1
     //
     //
     // surfaceSeries1.Brush
     //
     this.surfaceSeries1.Brush.Color = System.Drawing.Color.Red;
     //
     // surfaceSeries1.Marks
     //
     //
     // surfaceSeries1.Marks.Callout
     //
     this.surfaceSeries1.Marks.Callout.Arrow         = this.surfaceSeries1.Marks.Arrow;
     this.surfaceSeries1.Marks.Callout.ArrowHead     = Steema.TeeChart.Styles.ArrowHeadStyles.None;
     this.surfaceSeries1.Marks.Callout.ArrowHeadSize = 8;
     //
     // surfaceSeries1.Marks.Callout.Brush
     //
     this.surfaceSeries1.Marks.Callout.Brush.Color = System.Drawing.Color.Black;
     this.surfaceSeries1.Marks.Callout.Distance    = 0;
     this.surfaceSeries1.Marks.Callout.Draw3D      = false;
     this.surfaceSeries1.Marks.Callout.Length      = 10;
     this.surfaceSeries1.Marks.Callout.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     //
     // surfaceSeries1.Marks.Font
     //
     //
     // surfaceSeries1.Marks.Font.Shadow
     //
     this.surfaceSeries1.Marks.Font.Shadow.Visible = false;
     this.surfaceSeries1.NumXValues   = 25;
     this.surfaceSeries1.NumZValues   = 25;
     this.surfaceSeries1.PaletteMin   = 0;
     this.surfaceSeries1.PaletteStep  = 0;
     this.surfaceSeries1.PaletteStyle = Steema.TeeChart.Styles.PaletteStyles.Rainbow;
     //
     // surfaceSeries1.Pen
     //
     this.surfaceSeries1.Pen.Visible   = false;
     this.surfaceSeries1.Title         = "surface1";
     this.surfaceSeries1.UseColorRange = false;
     this.surfaceSeries1.UsePalette    = true;
     //
     // surfaceSeries1.XValues
     //
     this.surfaceSeries1.XValues.DataMember = "X";
     //
     // surfaceSeries1.YValues
     //
     this.surfaceSeries1.YValues.DataMember = "Y";
     //
     // surfaceSeries1.ZValues
     //
     this.surfaceSeries1.ZValues.DataMember = "Z";
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.Items.AddRange(new object[] {
         "Pale",
         "Strong",
         "Gray",
         "Inverted gray",
         "Rainbow"
     });
     this.comboBox1.Location              = new System.Drawing.Point(96, 8);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(88, 21);
     this.comboBox1.TabIndex              = 1;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(23, 11);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(71, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Palette Style:";
     //
     // Surface_Palette
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(399, 256);
     this.Name  = "Surface_Palette";
     this.Load += new System.EventHandler(this.SeriesType_Surface_Load);
     this.panel1.ResumeLayout(false);
 }
Пример #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.button1   = new System.Windows.Forms.Button();
     this.label1    = new System.Windows.Forms.Label();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.surface1  = new Steema.TeeChart.Styles.Surface();
     this.rotate1   = new Steema.TeeChart.Tools.Rotate();
     this.gridBand1 = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Text = "Surfaces (and any other \"grid 3D\" series like Tower, Contour, etc)\r\nthat have a s" +
                          "mall number of cells can be smoothed using a simple linear algorithm\r\nthat inser" +
                          "ts new cells in between existing cells by interpolating values.";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Name = "panel1";
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.Chart3DPercent    = 40;
     this.tChart1.Aspect.Orthogonal        = false;
     this.tChart1.Aspect.Perspective       = 100;
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.Zoom = 79;
     this.tChart1.Cursor      = System.Windows.Forms.Cursors.Default;
     //
     // tChart1.Header
     //
     this.tChart1.Header.Lines = new string[] {
         "TeeChart"
     };
     //
     // tChart1.Legend
     //
     this.tChart1.Legend.MaxNumRows = 8;
     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.surface1);
     this.tChart1.Tools.Add(this.rotate1);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Back
     //
     this.tChart1.Walls.Back.Size = 5;
     //
     // tChart1.Walls.Bottom
     //
     //
     // tChart1.Walls.Bottom.Pen
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     this.tChart1.Walls.Bottom.Size        = 5;
     //
     // tChart1.Walls.Left
     //
     //
     // tChart1.Walls.Left.Pen
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     this.tChart1.Walls.Left.Size        = 5;
     //
     // tChart1.Walls.Right
     //
     this.tChart1.Walls.Right.Size        = 5;
     this.tChart1.Walls.Right.Transparent = true;
     this.tChart1.Walls.Right.Visible     = true;
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Location  = new System.Drawing.Point(16, 8);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(128, 23);
     this.button1.TabIndex  = 0;
     this.button1.Text      = "Smooth Surface x 2";
     this.button1.Click    += new System.EventHandler(this.button1_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(160, 12);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(168, 23);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Grid Size = 5 x 5";
     //
     // checkBox1
     //
     this.checkBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.checkBox1.Location  = new System.Drawing.Point(332, 8);
     this.checkBox1.Name      = "checkBox1";
     this.checkBox1.TabIndex  = 2;
     this.checkBox1.Text      = "More Speed";
     this.checkBox1.Click    += new System.EventHandler(this.checkBox1_Click);
     //
     // surface1
     //
     //
     // surface1.Brush
     //
     this.surface1.Brush.Color = System.Drawing.Color.Red;
     //
     // surface1.Marks
     //
     //
     // surface1.Marks.Symbol
     //
     //
     // surface1.Marks.Symbol.Shadow
     //
     this.surface1.Marks.Symbol.Shadow.Height  = 1;
     this.surface1.Marks.Symbol.Shadow.Visible = true;
     this.surface1.Marks.Symbol.Shadow.Width   = 1;
     this.surface1.PaletteMin  = 0;
     this.surface1.PaletteStep = 0;
     this.surface1.Title       = "surface1";
     //
     // surface1.XValues
     //
     this.surface1.XValues.DataMember = "X";
     //
     // surface1.YValues
     //
     this.surface1.YValues.DataMember = "Y";
     //
     // surface1.ZValues
     //
     this.surface1.ZValues.DataMember = "Z";
     //
     // 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)));
     //
     // SurfaceSmoothing
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 317);
     this.Name = "SurfaceSmoothing";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.triSurfaceSeries1 = new Steema.TeeChart.Styles.TriSurface();
            this.checkBox1         = new System.Windows.Forms.CheckBox();
            this.checkBox2         = new System.Windows.Forms.CheckBox();
            this.rotate1           = new Steema.TeeChart.Tools.Rotate();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            //
            // textBox1
            //
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(472, 96);
            this.textBox1.Text = @"Tri-Surface boolean properties:

triSurfaceSeries.HideTriangles ( default true )
Constructed triangles behind other triangles are hidden before displaying them.

triSurfaceSeries.CacheTriangles ( default false )
When true, Triangles are preserved on consecutive displays (ie: rotating or zooming) (this gives much better speed when repainting the series without modifying values)";
            //
            // panel1
            //
            this.panel1.Controls.Add(this.checkBox2);
            this.panel1.Controls.Add(this.checkBox1);
            this.panel1.Location = new System.Drawing.Point(0, 96);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(472, 32);
            //
            // tChart1
            //
            //
            // tChart1.Aspect
            //
            this.tChart1.Aspect.Chart3DPercent    = 75;
            this.tChart1.Aspect.Elevation         = 340;
            this.tChart1.Aspect.Orthogonal        = false;
            this.tChart1.Aspect.Perspective       = 72;
            this.tChart1.Aspect.Rotation          = 319;
            this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
            this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
            this.tChart1.Aspect.Zoom = 75;
            //
            // tChart1.Header
            //
            this.tChart1.Header.Lines = new string[] {
                "tChart1"
            };
            this.tChart1.Header.Visible = false;
            //
            // tChart1.Legend
            //
            this.tChart1.Legend.Visible = false;
            this.tChart1.Location       = new System.Drawing.Point(0, 128);
            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)));
            //
            // tChart1.Panel.Gradient
            //
            this.tChart1.Panel.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(128)), ((System.Byte)(128)));
            this.tChart1.Panel.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192)));
            this.tChart1.Panel.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
            this.tChart1.Panel.Brush.Gradient.UseMiddle   = true;
            this.tChart1.Panel.Brush.Gradient.Visible     = true;
            //
            // tChart1.Panel.Gradient
            //
            this.tChart1.Panel.Gradient.EndColor    = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(128)), ((System.Byte)(128)));
            this.tChart1.Panel.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192)));
            this.tChart1.Panel.Gradient.StartColor  = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
            this.tChart1.Panel.Gradient.UseMiddle   = true;
            this.tChart1.Panel.Gradient.Visible     = true;
            this.tChart1.Series.Add(this.triSurfaceSeries1);
            this.tChart1.Size = new System.Drawing.Size(472, 165);
            this.tChart1.Tools.Add(this.rotate1);
            //
            // tChart1.Walls
            //
            this.tChart1.Walls.Visible = false;
            //
            // triSurfaceSeries1
            //
            //
            // triSurfaceSeries1.Brush
            //
            this.triSurfaceSeries1.Brush.Color = System.Drawing.Color.Red;
            //
            // triSurfaceSeries1.Marks
            //
            //
            // triSurfaceSeries1.Marks.Symbol
            //
            //
            // triSurfaceSeries1.Marks.Symbol.Shadow
            //
            this.triSurfaceSeries1.Marks.Symbol.Shadow.Height  = 1;
            this.triSurfaceSeries1.Marks.Symbol.Shadow.Visible = true;
            this.triSurfaceSeries1.Marks.Symbol.Shadow.Width   = 1;
            this.triSurfaceSeries1.PaletteMin  = 0;
            this.triSurfaceSeries1.PaletteStep = 0;
            this.triSurfaceSeries1.Title       = "triSurfaceSeries1";
            //
            // triSurfaceSeries1.XValues
            //
            this.triSurfaceSeries1.XValues.DataMember = "X";
            //
            // triSurfaceSeries1.YValues
            //
            this.triSurfaceSeries1.YValues.DataMember = "Y";
            //
            // triSurfaceSeries1.ZValues
            //
            this.triSurfaceSeries1.ZValues.DataMember = "Z";
            //
            // 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(13, 7);
            this.checkBox1.Name            = "checkBox1";
            this.checkBox1.Size            = new System.Drawing.Size(107, 17);
            this.checkBox1.TabIndex        = 0;
            this.checkBox1.Text            = "&Hide triangles";
            this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
            //
            // checkBox2
            //
            this.checkBox2.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
            this.checkBox2.Location        = new System.Drawing.Point(145, 7);
            this.checkBox2.Name            = "checkBox2";
            this.checkBox2.Size            = new System.Drawing.Size(116, 17);
            this.checkBox2.TabIndex        = 1;
            this.checkBox2.Text            = "&Cache triangles";
            this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
            //
            // TriSurface_Hiding
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(472, 293);
            this.Name = "TriSurface_Hiding";
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.points3D1    = new Steema.TeeChart.Styles.Points3D();
     this.surface1     = new Steema.TeeChart.Styles.Surface();
     this.label1       = new System.Windows.Forms.Label();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.rotate1      = new Steema.TeeChart.Tools.Rotate();
     this.gridBand1    = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(544, 56);
     this.textBox1.Text = "Small routine can do the \"gridding\" of arbitrary, floating XYZ data.\r\n\r\nThe gridd" +
                          "ing algorithm creates a fixed, regular grid of aproximate values using XYZ data." +
                          "";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.radioButton2);
     this.panel1.Controls.Add(this.radioButton1);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(0, 56);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(544, 40);
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.Chart3DPercent    = 75;
     this.tChart1.Aspect.Elevation         = 338;
     this.tChart1.Aspect.Orthogonal        = false;
     this.tChart1.Aspect.Perspective       = 0;
     this.tChart1.Aspect.Rotation          = 314;
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.Zoom = 63;
     //
     // tChart1.Header
     //
     this.tChart1.Header.Lines = new string[] {
         "tChart1"
     };
     this.tChart1.Header.Visible = false;
     //
     // tChart1.Legend
     //
     this.tChart1.Legend.MaxNumRows = 8;
     this.tChart1.Location          = new System.Drawing.Point(0, 96);
     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.points3D1);
     this.tChart1.Series.Add(this.surface1);
     this.tChart1.Size = new System.Drawing.Size(544, 253);
     this.tChart1.Tools.Add(this.rotate1);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Bottom
     //
     //
     // tChart1.Walls.Bottom.Pen
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     this.tChart1.Walls.Bottom.Size        = 5;
     //
     // tChart1.Walls.Left
     //
     //
     // tChart1.Walls.Left.Brush
     //
     this.tChart1.Walls.Left.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(224)));
     //
     // tChart1.Walls.Left.Pen
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     this.tChart1.Walls.Left.Size        = 5;
     //
     // points3D1
     //
     //
     // points3D1.LinePen
     //
     this.points3D1.LinePen.Color   = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.points3D1.LinePen.Visible = false;
     //
     // points3D1.Marks
     //
     //
     // points3D1.Marks.Symbol
     //
     //
     // points3D1.Marks.Symbol.Shadow
     //
     this.points3D1.Marks.Symbol.Shadow.Height  = 1;
     this.points3D1.Marks.Symbol.Shadow.Visible = true;
     this.points3D1.Marks.Symbol.Shadow.Width   = 1;
     //
     // points3D1.Pointer
     //
     //
     // points3D1.Pointer.Brush
     //
     this.points3D1.Pointer.Brush.Color    = System.Drawing.Color.Red;
     this.points3D1.Pointer.HorizSize      = 2;
     this.points3D1.Pointer.InflateMargins = false;
     //
     // points3D1.Pointer.Pen
     //
     this.points3D1.Pointer.Pen.Color   = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.points3D1.Pointer.Pen.Visible = false;
     this.points3D1.Pointer.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     this.points3D1.Pointer.VertSize    = 2;
     this.points3D1.Title   = "points3D1";
     this.points3D1.Visible = false;
     //
     // points3D1.XValues
     //
     this.points3D1.XValues.DataMember = "X";
     //
     // points3D1.YValues
     //
     this.points3D1.YValues.DataMember = "Y";
     //
     // points3D1.ZValues
     //
     this.points3D1.ZValues.DataMember = "Z";
     //
     // surface1
     //
     //
     // surface1.Brush
     //
     this.surface1.Brush.Color = System.Drawing.Color.Green;
     this.surface1.EndColor    = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(192)), ((System.Byte)(0)), ((System.Byte)(0)));
     //
     // surface1.Marks
     //
     //
     // surface1.Marks.Symbol
     //
     //
     // surface1.Marks.Symbol.Shadow
     //
     this.surface1.Marks.Symbol.Shadow.Height  = 1;
     this.surface1.Marks.Symbol.Shadow.Visible = true;
     this.surface1.Marks.Symbol.Shadow.Width   = 1;
     this.surface1.PaletteMin   = 0;
     this.surface1.PaletteStep  = 0;
     this.surface1.PaletteStyle = Steema.TeeChart.Styles.PaletteStyles.Strong;
     this.surface1.StartColor   = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.surface1.Title        = "surface1";
     //
     // surface1.XValues
     //
     this.surface1.XValues.DataMember = "X";
     //
     // surface1.YValues
     //
     this.surface1.YValues.DataMember = "Y";
     //
     // surface1.ZValues
     //
     this.surface1.ZValues.DataMember = "Z";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(32, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(56, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Show:";
     //
     // radioButton1
     //
     this.radioButton1.Location        = new System.Drawing.Point(104, 8);
     this.radioButton1.Name            = "radioButton1";
     this.radioButton1.TabIndex        = 1;
     this.radioButton1.Text            = "Original data";
     this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // radioButton2
     //
     this.radioButton2.Checked         = true;
     this.radioButton2.Location        = new System.Drawing.Point(224, 8);
     this.radioButton2.Name            = "radioButton2";
     this.radioButton2.TabIndex        = 2;
     this.radioButton2.TabStop         = true;
     this.radioButton2.Text            = "Surface";
     this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // 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)));
     //
     // XYZ_gridding
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(544, 349);
     this.Name = "XYZ_gridding";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dataSet1       = new System.Data.DataSet();
     this.dataTable1     = new System.Data.DataTable();
     this.colX           = new System.Data.DataColumn();
     this.colY           = new System.Data.DataColumn();
     this.colZ           = new System.Data.DataColumn();
     this.colDesc        = new System.Data.DataColumn();
     this.point3DSeries1 = new Steema.TeeChart.Styles.Points3D();
     this.rotate1        = new Steema.TeeChart.Tools.Rotate();
     this.button1        = new System.Windows.Forms.Button();
     this.gridBand1      = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(592, 48);
     this.textBox1.Text = "This example uses a DataSet created at designtime and linked via the Chart Editor" +
                          " to a Chart Series at designtime. The DataSet is populated at Form load.";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.button1);
     this.panel1.Location = new System.Drawing.Point(0, 48);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(592, 40);
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.Chart3DPercent    = 50;
     this.tChart1.Aspect.Orthogonal        = false;
     this.tChart1.Aspect.Perspective       = 78;
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.Zoom = 75;
     //
     // tChart1.Axes
     //
     //
     // tChart1.Axes.Bottom
     //
     //
     // tChart1.Axes.Bottom.Labels
     //
     //
     // tChart1.Axes.Bottom.Labels.Font
     //
     //
     // tChart1.Axes.Bottom.Labels.Font.Shadow
     //
     this.tChart1.Axes.Bottom.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Labels.Shadow
     //
     this.tChart1.Axes.Bottom.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Title
     //
     //
     // tChart1.Axes.Bottom.Title.Font
     //
     //
     // tChart1.Axes.Bottom.Title.Font.Shadow
     //
     this.tChart1.Axes.Bottom.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Title.Shadow
     //
     this.tChart1.Axes.Bottom.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth
     //
     //
     // tChart1.Axes.Depth.Labels
     //
     //
     // tChart1.Axes.Depth.Labels.Font
     //
     //
     // tChart1.Axes.Depth.Labels.Font.Shadow
     //
     this.tChart1.Axes.Depth.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Labels.Shadow
     //
     this.tChart1.Axes.Depth.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Title
     //
     //
     // tChart1.Axes.Depth.Title.Font
     //
     //
     // tChart1.Axes.Depth.Title.Font.Shadow
     //
     this.tChart1.Axes.Depth.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Title.Shadow
     //
     this.tChart1.Axes.Depth.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop
     //
     //
     // tChart1.Axes.DepthTop.Labels
     //
     //
     // tChart1.Axes.DepthTop.Labels.Font
     //
     //
     // tChart1.Axes.DepthTop.Labels.Font.Shadow
     //
     this.tChart1.Axes.DepthTop.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Labels.Shadow
     //
     this.tChart1.Axes.DepthTop.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Title
     //
     //
     // tChart1.Axes.DepthTop.Title.Font
     //
     //
     // tChart1.Axes.DepthTop.Title.Font.Shadow
     //
     this.tChart1.Axes.DepthTop.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Title.Shadow
     //
     this.tChart1.Axes.DepthTop.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Left
     //
     //
     // tChart1.Axes.Left.Labels
     //
     //
     // tChart1.Axes.Left.Labels.Font
     //
     //
     // tChart1.Axes.Left.Labels.Font.Shadow
     //
     this.tChart1.Axes.Left.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Labels.Shadow
     //
     this.tChart1.Axes.Left.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Title
     //
     //
     // tChart1.Axes.Left.Title.Font
     //
     //
     // tChart1.Axes.Left.Title.Font.Shadow
     //
     this.tChart1.Axes.Left.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Title.Shadow
     //
     this.tChart1.Axes.Left.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Right
     //
     //
     // tChart1.Axes.Right.Labels
     //
     //
     // tChart1.Axes.Right.Labels.Font
     //
     //
     // tChart1.Axes.Right.Labels.Font.Shadow
     //
     this.tChart1.Axes.Right.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Labels.Shadow
     //
     this.tChart1.Axes.Right.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Title
     //
     //
     // tChart1.Axes.Right.Title.Font
     //
     //
     // tChart1.Axes.Right.Title.Font.Shadow
     //
     this.tChart1.Axes.Right.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Title.Shadow
     //
     this.tChart1.Axes.Right.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Top
     //
     //
     // tChart1.Axes.Top.Labels
     //
     //
     // tChart1.Axes.Top.Labels.Font
     //
     //
     // tChart1.Axes.Top.Labels.Font.Shadow
     //
     this.tChart1.Axes.Top.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Labels.Shadow
     //
     this.tChart1.Axes.Top.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Title
     //
     //
     // tChart1.Axes.Top.Title.Font
     //
     //
     // tChart1.Axes.Top.Title.Font.Shadow
     //
     this.tChart1.Axes.Top.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Title.Shadow
     //
     this.tChart1.Axes.Top.Title.Shadow.Visible = false;
     //
     // tChart1.Footer
     //
     //
     // tChart1.Footer.Font
     //
     //
     // tChart1.Footer.Font.Shadow
     //
     this.tChart1.Footer.Font.Shadow.Visible = false;
     //
     // tChart1.Footer.Shadow
     //
     this.tChart1.Footer.Shadow.Visible = false;
     //
     // tChart1.Header
     //
     //
     // tChart1.Header.Font
     //
     //
     // tChart1.Header.Font.Shadow
     //
     this.tChart1.Header.Font.Shadow.Visible = false;
     this.tChart1.Header.Lines = new string[] {
         "tChart1"
     };
     //
     // tChart1.Header.Shadow
     //
     this.tChart1.Header.Shadow.Visible = false;
     //
     // tChart1.Legend
     //
     //
     // tChart1.Legend.Font
     //
     //
     // tChart1.Legend.Font.Shadow
     //
     this.tChart1.Legend.Font.Shadow.Visible = false;
     //
     // tChart1.Legend.Title
     //
     //
     // tChart1.Legend.Title.Font
     //
     this.tChart1.Legend.Title.Font.Bold = true;
     //
     // tChart1.Legend.Title.Font.Shadow
     //
     this.tChart1.Legend.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Legend.Title.Pen
     //
     this.tChart1.Legend.Title.Pen.Visible = false;
     //
     // tChart1.Legend.Title.Shadow
     //
     this.tChart1.Legend.Title.Shadow.Visible = false;
     this.tChart1.Location = new System.Drawing.Point(0, 88);
     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)));
     //
     // tChart1.Panel.Gradient
     //
     this.tChart1.Panel.Brush.Gradient.Visible = true;
     //
     // tChart1.Panel.Gradient
     //
     this.tChart1.Panel.Gradient.Visible = true;
     //
     // tChart1.Panel.Shadow
     //
     this.tChart1.Panel.Shadow.Visible = false;
     this.tChart1.Series.Add(this.point3DSeries1);
     this.tChart1.Size = new System.Drawing.Size(592, 280);
     //
     // tChart1.SubFooter
     //
     //
     // tChart1.SubFooter.Font
     //
     //
     // tChart1.SubFooter.Font.Shadow
     //
     this.tChart1.SubFooter.Font.Shadow.Visible = false;
     //
     // tChart1.SubFooter.Shadow
     //
     this.tChart1.SubFooter.Shadow.Visible = false;
     //
     // tChart1.SubHeader
     //
     //
     // tChart1.SubHeader.Font
     //
     //
     // tChart1.SubHeader.Font.Shadow
     //
     this.tChart1.SubHeader.Font.Shadow.Visible = false;
     //
     // tChart1.SubHeader.Shadow
     //
     this.tChart1.SubHeader.Shadow.Visible = false;
     this.tChart1.Tools.Add(this.rotate1);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Back
     //
     //
     // tChart1.Walls.Back.Pen
     //
     this.tChart1.Walls.Back.Pen.Visible = false;
     //
     // tChart1.Walls.Back.Shadow
     //
     this.tChart1.Walls.Back.Shadow.Visible = false;
     //
     // tChart1.Walls.Bottom
     //
     //
     // tChart1.Walls.Bottom.Pen
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     //
     // tChart1.Walls.Bottom.Shadow
     //
     this.tChart1.Walls.Bottom.Shadow.Visible = false;
     this.tChart1.Walls.Bottom.Size           = 4;
     //
     // tChart1.Walls.Left
     //
     //
     // tChart1.Walls.Left.Pen
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     //
     // tChart1.Walls.Left.Shadow
     //
     this.tChart1.Walls.Left.Shadow.Visible = false;
     this.tChart1.Walls.Left.Size           = 4;
     //
     // tChart1.Walls.Right
     //
     //
     // tChart1.Walls.Right.Shadow
     //
     this.tChart1.Walls.Right.Shadow.Visible = false;
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Locale      = new System.Globalization.CultureInfo("es-ES");
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
         this.dataTable1
     });
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
         this.colX,
         this.colY,
         this.colZ,
         this.colDesc
     });
     this.dataTable1.TableName = "Table1";
     //
     // colX
     //
     this.colX.Caption    = "colX";
     this.colX.ColumnName = "colX";
     this.colX.DataType   = typeof(System.Double);
     //
     // colY
     //
     this.colY.Caption    = "colY";
     this.colY.ColumnName = "colY";
     this.colY.DataType   = typeof(System.Double);
     //
     // colZ
     //
     this.colZ.Caption    = "colZ";
     this.colZ.ColumnName = "colZ";
     this.colZ.DataType   = typeof(System.Double);
     //
     // colDesc
     //
     this.colDesc.ColumnName = "colDesc";
     //
     // point3DSeries1
     //
     this.point3DSeries1.Cursor      = System.Windows.Forms.Cursors.Cross;
     this.point3DSeries1.DataSource  = this.dataTable1;
     this.point3DSeries1.LabelMember = "colDesc";
     //
     // point3DSeries1.LinePen
     //
     this.point3DSeries1.LinePen.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192)));
     //
     // point3DSeries1.Marks
     //
     //
     // point3DSeries1.Marks.Callout
     //
     this.point3DSeries1.Marks.Callout.Arrow         = this.point3DSeries1.Marks.Arrow;
     this.point3DSeries1.Marks.Callout.ArrowHead     = Steema.TeeChart.Styles.ArrowHeadStyles.None;
     this.point3DSeries1.Marks.Callout.ArrowHeadSize = 8;
     //
     // point3DSeries1.Marks.Callout.Brush
     //
     this.point3DSeries1.Marks.Callout.Brush.Color = System.Drawing.Color.Black;
     this.point3DSeries1.Marks.Callout.Distance    = 0;
     this.point3DSeries1.Marks.Callout.Draw3D      = false;
     this.point3DSeries1.Marks.Callout.Length      = 10;
     this.point3DSeries1.Marks.Callout.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     //
     // point3DSeries1.Marks.Font
     //
     //
     // point3DSeries1.Marks.Font.Shadow
     //
     this.point3DSeries1.Marks.Font.Shadow.Visible = false;
     //
     // point3DSeries1.Pointer
     //
     //
     // point3DSeries1.Pointer.Brush
     //
     this.point3DSeries1.Pointer.Brush.Color = System.Drawing.Color.Red;
     this.point3DSeries1.Pointer.HorizSize   = 5;
     //
     // point3DSeries1.Pointer.Pen
     //
     this.point3DSeries1.Pointer.Pen.Color   = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.point3DSeries1.Pointer.Pen.Visible = false;
     this.point3DSeries1.Pointer.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     this.point3DSeries1.Pointer.VertSize    = 5;
     this.point3DSeries1.Pointer.Visible     = true;
     this.point3DSeries1.Title = "point3DSeries1";
     //
     // point3DSeries1.XValues
     //
     this.point3DSeries1.XValues.DataMember = "colX";
     //
     // point3DSeries1.YValues
     //
     this.point3DSeries1.YValues.DataMember = "colY";
     //
     // point3DSeries1.ZValues
     //
     this.point3DSeries1.ZValues.DataMember = "colZ";
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Location  = new System.Drawing.Point(16, 8);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(120, 23);
     this.button1.TabIndex  = 0;
     this.button1.Text      = "&Edit Datasource...";
     this.button1.Click    += new System.EventHandler(this.button1_Click);
     //
     // gridBand1
     //
     this.gridBand1.Axis = this.tChart1.Axes.Left;
     //
     // gridBand1.Band1
     //
     this.gridBand1.Band1.Color = System.Drawing.Color.FromArgb(((System.Byte)(25)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     //
     // gridBand1.Band2
     //
     this.gridBand1.Band2.Color = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(0)));
     //
     // DatasetEditor
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(592, 368);
     this.Name  = "DatasetEditor";
     this.Load += new System.EventHandler(this.DatasetEditor_Load);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.bLightProps = new System.Windows.Forms.Button();
     this.tower1      = new Steema.TeeChart.Styles.Tower();
     this.lightTool1  = new Steema.TeeChart.Tools.LightTool();
     this.rotate1     = new Steema.TeeChart.Tools.Rotate();
     this.label1      = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Text = "The Light tool enables \"2D lighting\" visual effect to charts.\r\n\r\nIncludes several" +
                          " properties to control light and interactivity.";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.bLightProps);
     this.panel1.Name = "panel1";
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.Chart3DPercent = 45;
     this.tChart1.Aspect.Orthogonal     = false;
     this.tChart1.Aspect.Zoom           = 79;
     //
     // tChart1.Axes
     //
     //
     // tChart1.Axes.Bottom
     //
     //
     // tChart1.Axes.Bottom.Grid
     //
     this.tChart1.Axes.Bottom.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Bottom.Labels
     //
     //
     // tChart1.Axes.Bottom.Labels.Font
     //
     //
     // tChart1.Axes.Bottom.Labels.Font.Shadow
     //
     this.tChart1.Axes.Bottom.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Labels.Shadow
     //
     this.tChart1.Axes.Bottom.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Title
     //
     //
     // tChart1.Axes.Bottom.Title.Font
     //
     //
     // tChart1.Axes.Bottom.Title.Font.Shadow
     //
     this.tChart1.Axes.Bottom.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Title.Shadow
     //
     this.tChart1.Axes.Bottom.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth
     //
     //
     // tChart1.Axes.Depth.Grid
     //
     this.tChart1.Axes.Depth.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Depth.Labels
     //
     //
     // tChart1.Axes.Depth.Labels.Font
     //
     //
     // tChart1.Axes.Depth.Labels.Font.Shadow
     //
     this.tChart1.Axes.Depth.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Labels.Shadow
     //
     this.tChart1.Axes.Depth.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Title
     //
     //
     // tChart1.Axes.Depth.Title.Font
     //
     //
     // tChart1.Axes.Depth.Title.Font.Shadow
     //
     this.tChart1.Axes.Depth.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Title.Shadow
     //
     this.tChart1.Axes.Depth.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop
     //
     //
     // tChart1.Axes.DepthTop.Grid
     //
     this.tChart1.Axes.DepthTop.Grid.ZPosition = 0;
     //
     // tChart1.Axes.DepthTop.Labels
     //
     //
     // tChart1.Axes.DepthTop.Labels.Font
     //
     //
     // tChart1.Axes.DepthTop.Labels.Font.Shadow
     //
     this.tChart1.Axes.DepthTop.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Labels.Shadow
     //
     this.tChart1.Axes.DepthTop.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Title
     //
     //
     // tChart1.Axes.DepthTop.Title.Font
     //
     //
     // tChart1.Axes.DepthTop.Title.Font.Shadow
     //
     this.tChart1.Axes.DepthTop.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Title.Shadow
     //
     this.tChart1.Axes.DepthTop.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Left
     //
     //
     // tChart1.Axes.Left.Grid
     //
     this.tChart1.Axes.Left.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Left.Labels
     //
     //
     // tChart1.Axes.Left.Labels.Font
     //
     //
     // tChart1.Axes.Left.Labels.Font.Shadow
     //
     this.tChart1.Axes.Left.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Labels.Shadow
     //
     this.tChart1.Axes.Left.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Title
     //
     //
     // tChart1.Axes.Left.Title.Font
     //
     //
     // tChart1.Axes.Left.Title.Font.Shadow
     //
     this.tChart1.Axes.Left.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Title.Shadow
     //
     this.tChart1.Axes.Left.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Right
     //
     //
     // tChart1.Axes.Right.Grid
     //
     this.tChart1.Axes.Right.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Right.Labels
     //
     //
     // tChart1.Axes.Right.Labels.Font
     //
     //
     // tChart1.Axes.Right.Labels.Font.Shadow
     //
     this.tChart1.Axes.Right.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Labels.Shadow
     //
     this.tChart1.Axes.Right.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Title
     //
     //
     // tChart1.Axes.Right.Title.Font
     //
     //
     // tChart1.Axes.Right.Title.Font.Shadow
     //
     this.tChart1.Axes.Right.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Title.Shadow
     //
     this.tChart1.Axes.Right.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Top
     //
     //
     // tChart1.Axes.Top.Grid
     //
     this.tChart1.Axes.Top.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Top.Labels
     //
     //
     // tChart1.Axes.Top.Labels.Font
     //
     //
     // tChart1.Axes.Top.Labels.Font.Shadow
     //
     this.tChart1.Axes.Top.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Labels.Shadow
     //
     this.tChart1.Axes.Top.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Title
     //
     //
     // tChart1.Axes.Top.Title.Font
     //
     //
     // tChart1.Axes.Top.Title.Font.Shadow
     //
     this.tChart1.Axes.Top.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Title.Shadow
     //
     this.tChart1.Axes.Top.Title.Shadow.Visible = false;
     this.tChart1.BackColor = System.Drawing.Color.Transparent;
     //
     // tChart1.Footer
     //
     //
     // tChart1.Footer.Font
     //
     //
     // tChart1.Footer.Font.Shadow
     //
     this.tChart1.Footer.Font.Shadow.Visible = false;
     //
     // tChart1.Footer.Shadow
     //
     this.tChart1.Footer.Shadow.Visible = false;
     //
     // tChart1.Header
     //
     //
     // tChart1.Header.Font
     //
     //
     // tChart1.Header.Font.Shadow
     //
     this.tChart1.Header.Font.Shadow.Visible = false;
     this.tChart1.Header.Lines = new string[] {
         "TeeChart"
     };
     //
     // tChart1.Header.Shadow
     //
     this.tChart1.Header.Shadow.Visible = false;
     this.tChart1.Header.Visible        = false;
     //
     // tChart1.Legend
     //
     //
     // tChart1.Legend.Font
     //
     //
     // tChart1.Legend.Font.Shadow
     //
     this.tChart1.Legend.Font.Shadow.Visible = false;
     this.tChart1.Legend.MaxNumRows          = 8;
     //
     // tChart1.Legend.Title
     //
     //
     // tChart1.Legend.Title.Font
     //
     this.tChart1.Legend.Title.Font.Bold = true;
     //
     // tChart1.Legend.Title.Font.Shadow
     //
     this.tChart1.Legend.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Legend.Title.Pen
     //
     this.tChart1.Legend.Title.Pen.Visible = false;
     //
     // tChart1.Legend.Title.Shadow
     //
     this.tChart1.Legend.Title.Shadow.Visible = false;
     this.tChart1.Legend.Visible = false;
     this.tChart1.Name           = "tChart1";
     //
     // tChart1.Panel
     //
     //
     // tChart1.Panel.Brush
     //
     this.tChart1.Panel.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // tChart1.Panel.Shadow
     //
     this.tChart1.Panel.Shadow.Visible = false;
     this.tChart1.Series.Add(this.tower1);
     //
     // tChart1.SubFooter
     //
     //
     // tChart1.SubFooter.Font
     //
     //
     // tChart1.SubFooter.Font.Shadow
     //
     this.tChart1.SubFooter.Font.Shadow.Visible = false;
     //
     // tChart1.SubFooter.Shadow
     //
     this.tChart1.SubFooter.Shadow.Visible = false;
     //
     // tChart1.SubHeader
     //
     //
     // tChart1.SubHeader.Font
     //
     //
     // tChart1.SubHeader.Font.Shadow
     //
     this.tChart1.SubHeader.Font.Shadow.Visible = false;
     //
     // tChart1.SubHeader.Shadow
     //
     this.tChart1.SubHeader.Shadow.Visible = false;
     this.tChart1.Tools.Add(this.lightTool1);
     this.tChart1.Tools.Add(this.rotate1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Back
     //
     this.tChart1.Walls.Back.AutoHide = false;
     //
     // tChart1.Walls.Back.Shadow
     //
     this.tChart1.Walls.Back.Shadow.Visible = false;
     //
     // tChart1.Walls.Bottom
     //
     this.tChart1.Walls.Bottom.AutoHide = false;
     //
     // tChart1.Walls.Bottom.Shadow
     //
     this.tChart1.Walls.Bottom.Shadow.Visible = false;
     //
     // tChart1.Walls.Left
     //
     this.tChart1.Walls.Left.AutoHide = false;
     //
     // tChart1.Walls.Left.Shadow
     //
     this.tChart1.Walls.Left.Shadow.Visible = false;
     //
     // tChart1.Walls.Right
     //
     this.tChart1.Walls.Right.AutoHide = false;
     //
     // tChart1.Walls.Right.Shadow
     //
     this.tChart1.Walls.Right.Shadow.Visible = false;
     //
     // bLightProps
     //
     this.bLightProps.Location = new System.Drawing.Point(16, 8);
     this.bLightProps.Name     = "bLightProps";
     this.bLightProps.Size     = new System.Drawing.Size(120, 23);
     this.bLightProps.TabIndex = 0;
     this.bLightProps.Text     = "Light Tool properties";
     this.bLightProps.Click   += new System.EventHandler(this.bLightProps_Click);
     //
     // tower1
     //
     //
     // tower1.Brush
     //
     this.tower1.Brush.Color = System.Drawing.Color.Red;
     this.tower1.Dark3D      = false;
     //
     // tower1.Marks
     //
     //
     // tower1.Marks.Callout
     //
     this.tower1.Marks.Callout.Arrow         = this.tower1.Marks.Arrow;
     this.tower1.Marks.Callout.ArrowHead     = Steema.TeeChart.Styles.ArrowHeadStyles.None;
     this.tower1.Marks.Callout.ArrowHeadSize = 8;
     //
     // tower1.Marks.Callout.Brush
     //
     this.tower1.Marks.Callout.Brush.Color = System.Drawing.Color.Black;
     this.tower1.Marks.Callout.Distance    = 0;
     this.tower1.Marks.Callout.Draw3D      = false;
     this.tower1.Marks.Callout.Length      = 10;
     this.tower1.Marks.Callout.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     //
     // tower1.Marks.Font
     //
     //
     // tower1.Marks.Font.Shadow
     //
     this.tower1.Marks.Font.Shadow.Visible = false;
     this.tower1.Origin        = 0;
     this.tower1.PaletteMin    = 0;
     this.tower1.PaletteStep   = 0;
     this.tower1.PaletteStyle  = Steema.TeeChart.Styles.PaletteStyles.Strong;
     this.tower1.Title         = "tower1";
     this.tower1.TowerStyle    = Steema.TeeChart.Styles.TowerStyles.Cone;
     this.tower1.UseColorRange = false;
     this.tower1.UsePalette    = true;
     //
     // tower1.XValues
     //
     this.tower1.XValues.DataMember = "X";
     //
     // tower1.YValues
     //
     this.tower1.YValues.DataMember = "Y";
     //
     // tower1.ZValues
     //
     this.tower1.ZValues.DataMember = "Z";
     //
     // lightTool1
     //
     this.lightTool1.Factor      = 12;
     this.lightTool1.FollowMouse = true;
     this.lightTool1.Style       = Steema.TeeChart.Tools.LightStyle.SpotLight;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(155, 13);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(120, 16);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Drag Chart to rotate";
     //
     // Tool_Lighting
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 317);
     this.Name = "Tool_Lighting";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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(TriSurface_Hidding));
     this.triSurfaceSeries1 = new Steema.TeeChart.Styles.TriSurface();
     this.checkBox1         = new System.Windows.Forms.CheckBox();
     this.checkBox2         = new System.Windows.Forms.CheckBox();
     this.rotate1           = new Steema.TeeChart.Tools.Rotate();
     this.panel1.SuspendLayout();
     this.chartContainer.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Size = new System.Drawing.Size(472, 96);
     this.textBox1.Text = resources.GetString("textBox1.Text");
     //
     // panel1
     //
     this.panel1.Controls.Add(this.checkBox2);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Location = new System.Drawing.Point(0, 96);
     this.panel1.Size     = new System.Drawing.Size(472, 32);
     //
     // tChart1
     //
     //
     //
     //
     this.tChart1.Aspect.Chart3DPercent = 75;
     this.tChart1.Aspect.Elevation      = 340;
     this.tChart1.Aspect.ElevationFloat = 340;
     this.tChart1.Aspect.Orthogonal     = false;
     this.tChart1.Aspect.Perspective    = 72;
     this.tChart1.Aspect.Rotation       = 319;
     this.tChart1.Aspect.RotationFloat  = 319;
     this.tChart1.Aspect.ZOffset        = 0;
     this.tChart1.Aspect.Zoom           = 75;
     this.tChart1.Aspect.ZoomFloat      = 75;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Bottom.Labels.Font.Size      = 7;
     this.tChart1.Axes.Bottom.Labels.Font.SizeFloat = 7F;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Depth.Labels.Font.Size      = 7;
     this.tChart1.Axes.Depth.Labels.Font.SizeFloat = 7F;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.DepthTop.Labels.Font.Size      = 7;
     this.tChart1.Axes.DepthTop.Labels.Font.SizeFloat = 7F;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Left.Labels.Font.Size      = 7;
     this.tChart1.Axes.Left.Labels.Font.SizeFloat = 7F;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Right.Labels.Font.Size      = 7;
     this.tChart1.Axes.Right.Labels.Font.SizeFloat = 7F;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Top.Labels.Font.Size      = 7;
     this.tChart1.Axes.Top.Labels.Font.SizeFloat = 7F;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Header.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tChart1.Header.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.tChart1.Header.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0)))));
     this.tChart1.Header.Brush.Gradient.UseMiddle   = true;
     //
     //
     //
     this.tChart1.Header.Font.Size      = 9;
     this.tChart1.Header.Font.SizeFloat = 9F;
     this.tChart1.Header.Lines          = new string[] {
         "tChart1"
     };
     this.tChart1.Header.Visible = false;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Legend.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tChart1.Legend.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.tChart1.Legend.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0)))));
     this.tChart1.Legend.Brush.Gradient.UseMiddle   = true;
     //
     //
     //
     this.tChart1.Legend.Font.Size      = 7;
     this.tChart1.Legend.Font.SizeFloat = 7F;
     this.tChart1.Legend.Visible        = false;
     //
     //
     //
     //
     //
     //
     this.tChart1.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.Raised;
     this.tChart1.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None;
     //
     //
     //
     //
     //
     //
     this.tChart1.Panel.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(230)))), ((int)(((byte)(140)))));
     this.tChart1.Panel.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(245)))), ((int)(((byte)(238)))));
     this.tChart1.Panel.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(248)))), ((int)(((byte)(255)))));
     this.tChart1.Series.Add(this.triSurfaceSeries1);
     this.tChart1.Size = new System.Drawing.Size(472, 165);
     this.tChart1.Tools.Add(this.rotate1);
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Back.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Bottom.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tChart1.Walls.Bottom.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.tChart1.Walls.Bottom.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0)))));
     this.tChart1.Walls.Bottom.Brush.Gradient.UseMiddle   = true;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Left.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tChart1.Walls.Left.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.tChart1.Walls.Left.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0)))));
     this.tChart1.Walls.Left.Brush.Gradient.UseMiddle   = true;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Right.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tChart1.Walls.Right.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.tChart1.Walls.Right.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0)))));
     this.tChart1.Walls.Right.Brush.Gradient.UseMiddle   = true;
     this.tChart1.Walls.Visible = false;
     //
     // chartContainer
     //
     this.chartContainer.Location = new System.Drawing.Point(0, 128);
     this.chartContainer.Size     = new System.Drawing.Size(472, 165);
     //
     // triSurfaceSeries1
     //
     //
     //
     //
     this.triSurfaceSeries1.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.triSurfaceSeries1.Color       = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163)))));
     this.triSurfaceSeries1.ColorEach   = false;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.triSurfaceSeries1.Marks.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.triSurfaceSeries1.Marks.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.triSurfaceSeries1.Marks.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0)))));
     this.triSurfaceSeries1.Marks.Brush.Gradient.UseMiddle   = true;
     //
     //
     //
     this.triSurfaceSeries1.Marks.Callout.ArrowHead     = Steema.TeeChart.Styles.ArrowHeadStyles.None;
     this.triSurfaceSeries1.Marks.Callout.ArrowHeadSize = 8;
     //
     //
     //
     this.triSurfaceSeries1.Marks.Callout.Brush.Color = System.Drawing.Color.Black;
     this.triSurfaceSeries1.Marks.Callout.Distance    = 0;
     this.triSurfaceSeries1.Marks.Callout.Draw3D      = false;
     this.triSurfaceSeries1.Marks.Callout.Length      = 10;
     this.triSurfaceSeries1.Marks.Callout.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     this.triSurfaceSeries1.Marks.Callout.Visible     = false;
     this.triSurfaceSeries1.PaletteMin   = 0;
     this.triSurfaceSeries1.PaletteStep  = 0;
     this.triSurfaceSeries1.PaletteStyle = Steema.TeeChart.Styles.PaletteStyles.Pale;
     this.triSurfaceSeries1.Title        = "triSurfaceSeries1";
     //
     //
     //
     this.triSurfaceSeries1.XValues.DataMember = "X";
     //
     //
     //
     this.triSurfaceSeries1.YValues.DataMember = "Y";
     //
     //
     //
     this.triSurfaceSeries1.ZValues.DataMember = "Z";
     //
     // 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(13, 7);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(107, 17);
     this.checkBox1.TabIndex        = 0;
     this.checkBox1.Text            = "&Hide triangles";
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // checkBox2
     //
     this.checkBox2.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
     this.checkBox2.Location        = new System.Drawing.Point(145, 7);
     this.checkBox2.Name            = "checkBox2";
     this.checkBox2.Size            = new System.Drawing.Size(116, 17);
     this.checkBox2.TabIndex        = 1;
     this.checkBox2.Text            = "&Cache triangles";
     this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // TriSurface_Hidding
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(472, 293);
     this.Name = "TriSurface_Hidding";
     this.panel1.ResumeLayout(false);
     this.chartContainer.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.checkBox1      = new System.Windows.Forms.CheckBox();
     this.checkBox2      = new System.Windows.Forms.CheckBox();
     this.checkBox3      = new System.Windows.Forms.CheckBox();
     this.checkBox4      = new System.Windows.Forms.CheckBox();
     this.checkBox5      = new System.Windows.Forms.CheckBox();
     this.vScrollBar1    = new System.Windows.Forms.VScrollBar();
     this.contourSeries1 = new Steema.TeeChart.Styles.Contour();
     this.surfaceSeries1 = new Steema.TeeChart.Styles.Surface();
     this.rotate1        = new Steema.TeeChart.Tools.Rotate();
     this.gridBand1      = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(509, 62);
     this.textBox1.Text = "The Contour Series displays lines corresponding to \"Level\" values on 3D XYZ data." +
                          "\r\nThe number of levels, the Level intervals, the Levels positions, colors and Le" +
                          "gend can be fully customized.  It can also be viewed in 2D, or rotated in 3D mod" +
                          "e.";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.checkBox5);
     this.panel1.Controls.Add(this.checkBox4);
     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, 62);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(509, 34);
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.Chart3DPercent    = 75;
     this.tChart1.Aspect.Elevation         = 334;
     this.tChart1.Aspect.Orthogonal        = false;
     this.tChart1.Aspect.Perspective       = 57;
     this.tChart1.Aspect.Rotation          = 299;
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.Zoom = 66;
     //
     // tChart1.Axes
     //
     //
     // tChart1.Axes.Depth
     //
     this.tChart1.Axes.Depth.Visible = true;
     //
     // tChart1.Header
     //
     this.tChart1.Header.Lines = new string[] {
         "tChart1"
     };
     this.tChart1.Header.Visible = false;
     //
     // tChart1.Legend
     //
     this.tChart1.Legend.Alignment       = Steema.TeeChart.LegendAlignments.Left;
     this.tChart1.Legend.FontSeriesColor = true;
     this.tChart1.Legend.LegendStyle     = Steema.TeeChart.LegendStyles.Values;
     this.tChart1.Legend.ResizeChart     = false;
     this.tChart1.Location = new System.Drawing.Point(0, 96);
     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.contourSeries1);
     this.tChart1.Series.Add(this.surfaceSeries1);
     this.tChart1.Size = new System.Drawing.Size(509, 224);
     this.tChart1.Tools.Add(this.rotate1);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Back
     //
     //
     // tChart1.Walls.Back.Brush
     //
     this.tChart1.Walls.Back.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(178)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     //
     // tChart1.Walls.Back.Gradient
     //
     this.tChart1.Walls.Back.Brush.Gradient.Transparency = 30;
     //
     // tChart1.Walls.Back.Gradient
     //
     this.tChart1.Walls.Back.Gradient.Transparency = 30;
     //
     // tChart1.Walls.Back.Pen
     //
     this.tChart1.Walls.Back.Pen.Visible = false;
     this.tChart1.Walls.Back.Size        = 7;
     this.tChart1.Walls.Back.Transparent = false;
     //
     // tChart1.Walls.Bottom
     //
     //
     // tChart1.Walls.Bottom.Brush
     //
     this.tChart1.Walls.Bottom.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(178)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Brush.Gradient.Transparency = 30;
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Gradient.Transparency = 30;
     //
     // tChart1.Walls.Bottom.Pen
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     this.tChart1.Walls.Bottom.Size        = 8;
     //
     // tChart1.Walls.Left
     //
     //
     // tChart1.Walls.Left.Brush
     //
     this.tChart1.Walls.Left.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(178)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(224)));
     //
     // tChart1.Walls.Left.Gradient
     //
     this.tChart1.Walls.Left.Brush.Gradient.Transparency = 30;
     //
     // tChart1.Walls.Left.Gradient
     //
     this.tChart1.Walls.Left.Gradient.Transparency = 30;
     //
     // tChart1.Walls.Left.Pen
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     this.tChart1.Walls.Left.Size        = 7;
     //
     // checkBox1
     //
     this.checkBox1.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
     this.checkBox1.Location        = new System.Drawing.Point(13, 7);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(43, 21);
     this.checkBox1.TabIndex        = 0;
     this.checkBox1.Text            = "&2D";
     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(67, 7);
     this.checkBox2.Name            = "checkBox2";
     this.checkBox2.Size            = new System.Drawing.Size(101, 21);
     this.checkBox2.TabIndex        = 1;
     this.checkBox2.Text            = "Show &Walls";
     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(153, 7);
     this.checkBox3.Name            = "checkBox3";
     this.checkBox3.Size            = new System.Drawing.Size(114, 21);
     this.checkBox3.TabIndex        = 2;
     this.checkBox3.Text            = "Color &Each Level";
     this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
     //
     // checkBox4
     //
     this.checkBox4.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
     this.checkBox4.Location        = new System.Drawing.Point(273, 7);
     this.checkBox4.Name            = "checkBox4";
     this.checkBox4.Size            = new System.Drawing.Size(95, 21);
     this.checkBox4.TabIndex        = 3;
     this.checkBox4.Text            = "Levels at &Y";
     this.checkBox4.CheckedChanged += new System.EventHandler(this.checkBox4_CheckedChanged);
     //
     // checkBox5
     //
     this.checkBox5.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
     this.checkBox5.Location        = new System.Drawing.Point(360, 7);
     this.checkBox5.Name            = "checkBox5";
     this.checkBox5.Size            = new System.Drawing.Size(60, 21);
     this.checkBox5.TabIndex        = 4;
     this.checkBox5.Text            = "&Surface";
     this.checkBox5.CheckedChanged += new System.EventHandler(this.checkBox5_CheckedChanged);
     //
     // vScrollBar1
     //
     this.vScrollBar1.Dock     = System.Windows.Forms.DockStyle.Right;
     this.vScrollBar1.Location = new System.Drawing.Point(509, 0);
     this.vScrollBar1.Maximum  = 1000;
     this.vScrollBar1.Name     = "vScrollBar1";
     this.vScrollBar1.Size     = new System.Drawing.Size(17, 320);
     this.vScrollBar1.TabIndex = 4;
     this.vScrollBar1.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar1_Scroll);
     //
     // contourSeries1
     //
     //
     // contourSeries1.Brush
     //
     this.contourSeries1.ColorEach     = true;
     this.contourSeries1.Brush.Visible = false;
     //
     // contourSeries1.Marks
     //
     //
     // contourSeries1.Marks.Symbol
     //
     //
     // contourSeries1.Marks.Symbol.Shadow
     //
     this.contourSeries1.Marks.Symbol.Shadow.Height  = 1;
     this.contourSeries1.Marks.Symbol.Shadow.Visible = true;
     this.contourSeries1.Marks.Symbol.Shadow.Width   = 1;
     this.contourSeries1.PaletteMin  = 0;
     this.contourSeries1.PaletteStep = 0;
     this.contourSeries1.Title       = "contour1";
     //
     // contourSeries1.XValues
     //
     this.contourSeries1.XValues.DataMember = "X";
     this.contourSeries1.YPosition          = 0.18959828428699516;
     //
     // contourSeries1.YValues
     //
     this.contourSeries1.YValues.DataMember = "Y";
     //
     // contourSeries1.ZValues
     //
     this.contourSeries1.ZValues.DataMember = "Z";
     //
     // surfaceSeries1
     //
     //
     // surfaceSeries1.Brush
     //
     this.surfaceSeries1.Brush.Color = System.Drawing.Color.Green;
     //
     // surfaceSeries1.Marks
     //
     //
     // surfaceSeries1.Marks.Symbol
     //
     //
     // surfaceSeries1.Marks.Symbol.Shadow
     //
     this.surfaceSeries1.Marks.Symbol.Shadow.Height  = 1;
     this.surfaceSeries1.Marks.Symbol.Shadow.Visible = true;
     this.surfaceSeries1.Marks.Symbol.Shadow.Width   = 1;
     this.surfaceSeries1.PaletteMin   = 0;
     this.surfaceSeries1.PaletteStep  = 0;
     this.surfaceSeries1.ShowInLegend = false;
     this.surfaceSeries1.Title        = "surface2";
     this.surfaceSeries1.Visible      = false;
     //
     // surfaceSeries1.XValues
     //
     this.surfaceSeries1.XValues.DataMember = "X";
     //
     // surfaceSeries1.YValues
     //
     this.surfaceSeries1.YValues.DataMember = "Y";
     //
     // surfaceSeries1.ZValues
     //
     this.surfaceSeries1.ZValues.DataMember = "Z";
     //
     // gridBand1
     //
     //
     // gridBand1.Band1
     //
     this.gridBand1.Band1.Color = System.Drawing.Color.Black;
     //
     // gridBand1.Band2
     //
     this.gridBand1.Band2.Color = System.Drawing.Color.Black;
     //
     // SeriesType_Contour
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(526, 320);
     this.chartContainer.Controls.Add(this.vScrollBar1);
     this.Name = "SeriesType_Contour";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #15
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(Tool_RotateRotating));
            this.tower1         = new Steema.TeeChart.Styles.Tower();
            this.rotate1        = new Steema.TeeChart.Tools.Rotate();
            this.label1         = new System.Windows.Forms.Label();
            this.lRotation      = new System.Windows.Forms.Label();
            this.label2         = new System.Windows.Forms.Label();
            this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
            this.label3         = new System.Windows.Forms.Label();
            this.hScrollBar1    = new System.Windows.Forms.HScrollBar();
            this.panel1.SuspendLayout();
            this.chartContainer.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
            this.SuspendLayout();
            //
            // textBox1
            //
            this.textBox1.Text = "The RotateTool has a Rotate event + Speed and Inertia properties.";
            //
            // panel1
            //
            this.panel1.Controls.Add(this.hScrollBar1);
            this.panel1.Controls.Add(this.label3);
            this.panel1.Controls.Add(this.numericUpDown1);
            this.panel1.Controls.Add(this.label2);
            this.panel1.Controls.Add(this.lRotation);
            this.panel1.Controls.Add(this.label1);
            //
            // tChart1
            //
            //
            //
            //
            this.tChart1.Aspect.Chart3DPercent    = 25;
            this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
            this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
            this.tChart1.Aspect.ZOffset           = 0;
            //
            //
            //
            this.tChart1.Header.Lines = new string[] {
                "RotateTool Rotate/Speed"
            };
            //
            //
            //
            this.tChart1.Legend.MaxNumRows = 8;
            this.tChart1.Legend.Visible    = false;
            //
            //
            //
            //
            //
            //
            //
            //
            //
            this.tChart1.Panel.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(21)))), ((int)(((byte)(60)))), ((int)(((byte)(89)))));
            this.tChart1.Panel.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.tChart1.Panel.Brush.Gradient.Sigma       = true;
            this.tChart1.Panel.Brush.Gradient.SigmaFocus  = 1F;
            this.tChart1.Panel.Brush.Gradient.SigmaScale  = 0.8F;
            this.tChart1.Panel.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
            this.tChart1.Series.Add(this.tower1);
            this.tChart1.Size = new System.Drawing.Size(440, 205);
            this.tChart1.Tools.Add(this.rotate1);
            //
            // tower1
            //
            //
            //
            //
            this.tower1.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(244)))), ((int)(((byte)(78)))));
            this.tower1.Color       = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163)))));
            this.tower1.ColorEach   = false;
            //
            //
            //
            //
            //
            //
            this.tower1.Marks.Callout.ArrowHead     = Steema.TeeChart.Styles.ArrowHeadStyles.None;
            this.tower1.Marks.Callout.ArrowHeadSize = 8;
            //
            //
            //
            this.tower1.Marks.Callout.Brush.Color = System.Drawing.Color.Black;
            this.tower1.Marks.Callout.Distance    = 0;
            this.tower1.Marks.Callout.Draw3D      = false;
            this.tower1.Marks.Callout.Length      = 10;
            this.tower1.Marks.Callout.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
            this.tower1.Marks.Callout.Visible     = false;
            this.tower1.Origin        = 0;
            this.tower1.PaletteMin    = 0;
            this.tower1.PaletteStep   = 0;
            this.tower1.Title         = "tower1";
            this.tower1.UseColorRange = false;
            this.tower1.UsePalette    = true;
            //
            //
            //
            this.tower1.XValues.DataMember = "X";
            //
            //
            //
            this.tower1.YValues.DataMember = "Y";
            //
            //
            //
            this.tower1.ZValues.DataMember = "Z";
            //
            // rotate1
            //
            this.rotate1.Rotating += new Steema.TeeChart.Tools.RotatingEventHandler(this.rotate1_Rotating);
            //
            // label1
            //
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 14);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(50, 13);
            this.label1.TabIndex = 0;
            this.label1.Text     = "Rotation:";
            //
            // lRotation
            //
            this.lRotation.AutoSize = true;
            this.lRotation.Location = new System.Drawing.Point(62, 14);
            this.lRotation.Name     = "lRotation";
            this.lRotation.Size     = new System.Drawing.Size(0, 13);
            this.lRotation.TabIndex = 1;
            //
            // label2
            //
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(134, 14);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(41, 13);
            this.label2.TabIndex = 2;
            this.label2.Text     = "Speed:";
            //
            // numericUpDown1
            //
            this.numericUpDown1.Location = new System.Drawing.Point(181, 12);
            this.numericUpDown1.Name     = "numericUpDown1";
            this.numericUpDown1.Size     = new System.Drawing.Size(45, 20);
            this.numericUpDown1.TabIndex = 3;
            this.numericUpDown1.Value    = new decimal(new int[] {
                50,
                0,
                0,
                0
            });
            this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
            //
            // label3
            //
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(258, 14);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(36, 13);
            this.label3.TabIndex = 4;
            this.label3.Text     = "Inertia";
            //
            // hScrollBar1
            //
            this.hScrollBar1.Location = new System.Drawing.Point(297, 10);
            this.hScrollBar1.Name     = "hScrollBar1";
            this.hScrollBar1.Size     = new System.Drawing.Size(118, 17);
            this.hScrollBar1.TabIndex = 5;
            this.hScrollBar1.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar1_Scroll);
            //
            // Tool_RotateRotating
            //
#if VS2005
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
#endif
            this.ClientSize = new System.Drawing.Size(440, 317);
            this.Name       = "Tool_RotateRotating";
            this.Text       = "Tool_RotateRotating";
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.chartContainer.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components     = new System.ComponentModel.Container();
     this.surfaceSeries1 = new Steema.TeeChart.Styles.Surface();
     this.checkBox1      = new System.Windows.Forms.CheckBox();
     this.label1         = new System.Windows.Forms.Label();
     this.comboBox1      = new System.Windows.Forms.ComboBox();
     this.comboBox2      = new System.Windows.Forms.ComboBox();
     this.label2         = new System.Windows.Forms.Label();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.timer1         = new System.Windows.Forms.Timer(this.components);
     this.rotate1        = new Steema.TeeChart.Tools.Rotate();
     this.gridBand1      = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     //
     // textBox1
     //
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(399, 56);
     this.textBox1.TabIndex = 0;
     this.textBox1.Text     = "Surface displays a grid of XYZ floating point values.\r\nOptions include palette, b" +
                              "order, pattern, null values, wire-frame, dots, surface sides, marks, gradients, " +
                              "inverted axes, etc.\r\n\r\nThings to try: Click and drag mouse to rotate chart.";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.numericUpDown1);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.comboBox2);
     this.panel1.Controls.Add(this.comboBox1);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Location = new System.Drawing.Point(0, 56);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(399, 35);
     this.panel1.TabIndex = 1;
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.Chart3DPercent    = 90;
     this.tChart1.Aspect.Elevation         = 348;
     this.tChart1.Aspect.Orthogonal        = false;
     this.tChart1.Aspect.Perspective       = 62;
     this.tChart1.Aspect.Rotation          = 329;
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     this.tChart1.Aspect.VertOffset        = -20;
     this.tChart1.Aspect.Zoom = 66;
     //
     // tChart1.Axes
     //
     //
     // tChart1.Axes.Bottom
     //
     //
     // tChart1.Axes.Bottom.Grid
     //
     this.tChart1.Axes.Bottom.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Bottom.Labels
     //
     //
     // tChart1.Axes.Bottom.Labels.Font
     //
     //
     // tChart1.Axes.Bottom.Labels.Font.Shadow
     //
     this.tChart1.Axes.Bottom.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Labels.Shadow
     //
     this.tChart1.Axes.Bottom.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Title
     //
     //
     // tChart1.Axes.Bottom.Title.Font
     //
     //
     // tChart1.Axes.Bottom.Title.Font.Shadow
     //
     this.tChart1.Axes.Bottom.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Bottom.Title.Shadow
     //
     this.tChart1.Axes.Bottom.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth
     //
     //
     // tChart1.Axes.Depth.Grid
     //
     this.tChart1.Axes.Depth.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Depth.Labels
     //
     //
     // tChart1.Axes.Depth.Labels.Font
     //
     //
     // tChart1.Axes.Depth.Labels.Font.Shadow
     //
     this.tChart1.Axes.Depth.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Labels.Shadow
     //
     this.tChart1.Axes.Depth.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Title
     //
     //
     // tChart1.Axes.Depth.Title.Font
     //
     //
     // tChart1.Axes.Depth.Title.Font.Shadow
     //
     this.tChart1.Axes.Depth.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Depth.Title.Shadow
     //
     this.tChart1.Axes.Depth.Title.Shadow.Visible = false;
     this.tChart1.Axes.Depth.Visible = true;
     //
     // tChart1.Axes.DepthTop
     //
     //
     // tChart1.Axes.DepthTop.Grid
     //
     this.tChart1.Axes.DepthTop.Grid.ZPosition = 0;
     //
     // tChart1.Axes.DepthTop.Labels
     //
     //
     // tChart1.Axes.DepthTop.Labels.Font
     //
     //
     // tChart1.Axes.DepthTop.Labels.Font.Shadow
     //
     this.tChart1.Axes.DepthTop.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Labels.Shadow
     //
     this.tChart1.Axes.DepthTop.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Title
     //
     //
     // tChart1.Axes.DepthTop.Title.Font
     //
     //
     // tChart1.Axes.DepthTop.Title.Font.Shadow
     //
     this.tChart1.Axes.DepthTop.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.DepthTop.Title.Shadow
     //
     this.tChart1.Axes.DepthTop.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Left
     //
     //
     // tChart1.Axes.Left.Grid
     //
     this.tChart1.Axes.Left.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Left.Labels
     //
     //
     // tChart1.Axes.Left.Labels.Font
     //
     //
     // tChart1.Axes.Left.Labels.Font.Shadow
     //
     this.tChart1.Axes.Left.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Labels.Shadow
     //
     this.tChart1.Axes.Left.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Title
     //
     //
     // tChart1.Axes.Left.Title.Font
     //
     //
     // tChart1.Axes.Left.Title.Font.Shadow
     //
     this.tChart1.Axes.Left.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Left.Title.Shadow
     //
     this.tChart1.Axes.Left.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Right
     //
     //
     // tChart1.Axes.Right.Grid
     //
     this.tChart1.Axes.Right.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Right.Labels
     //
     //
     // tChart1.Axes.Right.Labels.Font
     //
     //
     // tChart1.Axes.Right.Labels.Font.Shadow
     //
     this.tChart1.Axes.Right.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Labels.Shadow
     //
     this.tChart1.Axes.Right.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Title
     //
     //
     // tChart1.Axes.Right.Title.Font
     //
     //
     // tChart1.Axes.Right.Title.Font.Shadow
     //
     this.tChart1.Axes.Right.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Right.Title.Shadow
     //
     this.tChart1.Axes.Right.Title.Shadow.Visible = false;
     //
     // tChart1.Axes.Top
     //
     //
     // tChart1.Axes.Top.Grid
     //
     this.tChart1.Axes.Top.Grid.ZPosition = 0;
     //
     // tChart1.Axes.Top.Labels
     //
     //
     // tChart1.Axes.Top.Labels.Font
     //
     //
     // tChart1.Axes.Top.Labels.Font.Shadow
     //
     this.tChart1.Axes.Top.Labels.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Labels.Shadow
     //
     this.tChart1.Axes.Top.Labels.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Title
     //
     //
     // tChart1.Axes.Top.Title.Font
     //
     //
     // tChart1.Axes.Top.Title.Font.Shadow
     //
     this.tChart1.Axes.Top.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Axes.Top.Title.Shadow
     //
     this.tChart1.Axes.Top.Title.Shadow.Visible = false;
     //
     // tChart1.Footer
     //
     //
     // tChart1.Footer.Font
     //
     //
     // tChart1.Footer.Font.Shadow
     //
     this.tChart1.Footer.Font.Shadow.Visible = false;
     //
     // tChart1.Footer.Shadow
     //
     this.tChart1.Footer.Shadow.Visible = false;
     //
     // tChart1.Header
     //
     //
     // tChart1.Header.Font
     //
     //
     // tChart1.Header.Font.Shadow
     //
     this.tChart1.Header.Font.Shadow.Visible = false;
     this.tChart1.Header.Lines = new string[] {
         "tChart1"
     };
     //
     // tChart1.Header.Shadow
     //
     this.tChart1.Header.Shadow.Visible = false;
     //
     // tChart1.Legend
     //
     this.tChart1.Legend.Alignment = Steema.TeeChart.LegendAlignments.Top;
     //
     // tChart1.Legend.Font
     //
     //
     // tChart1.Legend.Font.Shadow
     //
     this.tChart1.Legend.Font.Shadow.Visible = false;
     //
     // tChart1.Legend.Title
     //
     //
     // tChart1.Legend.Title.Font
     //
     this.tChart1.Legend.Title.Font.Bold = true;
     //
     // tChart1.Legend.Title.Font.Shadow
     //
     this.tChart1.Legend.Title.Font.Shadow.Visible = false;
     //
     // tChart1.Legend.Title.Pen
     //
     this.tChart1.Legend.Title.Pen.Visible = false;
     //
     // tChart1.Legend.Title.Shadow
     //
     this.tChart1.Legend.Title.Shadow.Visible = false;
     this.tChart1.Legend.Visible = false;
     this.tChart1.Location       = new System.Drawing.Point(0, 91);
     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)));
     //
     // tChart1.Panel.Shadow
     //
     this.tChart1.Panel.Shadow.Visible = false;
     this.tChart1.Series.Add(this.surfaceSeries1);
     this.tChart1.Size = new System.Drawing.Size(399, 165);
     //
     // tChart1.SubFooter
     //
     //
     // tChart1.SubFooter.Font
     //
     //
     // tChart1.SubFooter.Font.Shadow
     //
     this.tChart1.SubFooter.Font.Shadow.Visible = false;
     //
     // tChart1.SubFooter.Shadow
     //
     this.tChart1.SubFooter.Shadow.Visible = false;
     //
     // tChart1.SubHeader
     //
     //
     // tChart1.SubHeader.Font
     //
     //
     // tChart1.SubHeader.Font.Shadow
     //
     this.tChart1.SubHeader.Font.Shadow.Visible = false;
     //
     // tChart1.SubHeader.Shadow
     //
     this.tChart1.SubHeader.Shadow.Visible = false;
     this.tChart1.TabIndex = 2;
     this.tChart1.Tools.Add(this.rotate1);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Back
     //
     this.tChart1.Walls.Back.AutoHide = false;
     //
     // tChart1.Walls.Back.Brush
     //
     this.tChart1.Walls.Back.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192)));
     //
     // tChart1.Walls.Back.Gradient
     //
     this.tChart1.Walls.Back.Brush.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Back.Gradient
     //
     this.tChart1.Walls.Back.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Back.Pen
     //
     this.tChart1.Walls.Back.Pen.Visible = false;
     //
     // tChart1.Walls.Back.Shadow
     //
     this.tChart1.Walls.Back.Shadow.Visible = false;
     this.tChart1.Walls.Back.Transparent    = false;
     //
     // tChart1.Walls.Bottom
     //
     this.tChart1.Walls.Bottom.AutoHide = false;
     //
     // tChart1.Walls.Bottom.Brush
     //
     this.tChart1.Walls.Bottom.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Brush.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Bottom.Gradient
     //
     this.tChart1.Walls.Bottom.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Bottom.Pen
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     //
     // tChart1.Walls.Bottom.Shadow
     //
     this.tChart1.Walls.Bottom.Shadow.Visible = false;
     this.tChart1.Walls.Bottom.Size           = 5;
     //
     // tChart1.Walls.Left
     //
     this.tChart1.Walls.Left.AutoHide = false;
     //
     // tChart1.Walls.Left.Brush
     //
     this.tChart1.Walls.Left.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(153)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(224)));
     //
     // tChart1.Walls.Left.Gradient
     //
     this.tChart1.Walls.Left.Brush.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Left.Gradient
     //
     this.tChart1.Walls.Left.Gradient.Transparency = 40;
     //
     // tChart1.Walls.Left.Pen
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     //
     // tChart1.Walls.Left.Shadow
     //
     this.tChart1.Walls.Left.Shadow.Visible = false;
     this.tChart1.Walls.Left.Size           = 5;
     //
     // tChart1.Walls.Right
     //
     this.tChart1.Walls.Right.AutoHide = false;
     //
     // tChart1.Walls.Right.Shadow
     //
     this.tChart1.Walls.Right.Shadow.Visible = false;
     //
     // surfaceSeries1
     //
     //
     // surfaceSeries1.Brush
     //
     this.surfaceSeries1.Brush.Color = System.Drawing.Color.Red;
     //
     // surfaceSeries1.Marks
     //
     //
     // surfaceSeries1.Marks.Callout
     //
     this.surfaceSeries1.Marks.Callout.Arrow         = this.surfaceSeries1.Marks.Arrow;
     this.surfaceSeries1.Marks.Callout.ArrowHead     = Steema.TeeChart.Styles.ArrowHeadStyles.None;
     this.surfaceSeries1.Marks.Callout.ArrowHeadSize = 8;
     //
     // surfaceSeries1.Marks.Callout.Brush
     //
     this.surfaceSeries1.Marks.Callout.Brush.Color = System.Drawing.Color.Black;
     this.surfaceSeries1.Marks.Callout.Distance    = 0;
     this.surfaceSeries1.Marks.Callout.Draw3D      = false;
     this.surfaceSeries1.Marks.Callout.Length      = 10;
     this.surfaceSeries1.Marks.Callout.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     //
     // surfaceSeries1.Marks.Font
     //
     //
     // surfaceSeries1.Marks.Font.Shadow
     //
     this.surfaceSeries1.Marks.Font.Shadow.Visible = false;
     this.surfaceSeries1.NumXValues  = 25;
     this.surfaceSeries1.NumZValues  = 25;
     this.surfaceSeries1.PaletteMin  = 0;
     this.surfaceSeries1.PaletteStep = 0;
     this.surfaceSeries1.Title       = "surface1";
     //
     // surfaceSeries1.XValues
     //
     this.surfaceSeries1.XValues.DataMember = "X";
     //
     // surfaceSeries1.YValues
     //
     this.surfaceSeries1.YValues.DataMember = "Y";
     //
     // surfaceSeries1.ZValues
     //
     this.surfaceSeries1.ZValues.DataMember = "Z";
     this.surfaceSeries1.GetYValue         += new Steema.TeeChart.Styles.Custom3DGrid.GetYValueEventHandler(this.surfaceSeries1_GetYValue);
     //
     // checkBox1
     //
     this.checkBox1.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
     this.checkBox1.Location        = new System.Drawing.Point(8, 7);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(80, 21);
     this.checkBox1.TabIndex        = 0;
     this.checkBox1.Text            = "&Animate";
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(175, 10);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(36, 16);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "&Style :";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.Items.AddRange(new object[] {
         "Single Color",
         "Color Range",
         "Color Palette",
         "Strong Palette",
         "Gray scale",
         "Inverted Gray",
         "Rainbow"
     });
     this.comboBox1.Location              = new System.Drawing.Point(78, 7);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(88, 21);
     this.comboBox1.TabIndex              = 1;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // comboBox2
     //
     this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.Items.AddRange(new object[] {
         "Solid and Grid",
         "Solid",
         "Wireframe",
         "Dots"
     });
     this.comboBox2.Location              = new System.Drawing.Point(212, 7);
     this.comboBox2.Name                  = "comboBox2";
     this.comboBox2.Size                  = new System.Drawing.Size(73, 21);
     this.comboBox2.TabIndex              = 3;
     this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize    = true;
     this.label2.Location    = new System.Drawing.Point(295, 10);
     this.label2.Name        = "label2";
     this.label2.Size        = new System.Drawing.Size(46, 16);
     this.label2.TabIndex    = 4;
     this.label2.Text        = "Sample:";
     this.label2.UseMnemonic = false;
     //
     // numericUpDown1
     //
     this.numericUpDown1.Location = new System.Drawing.Point(348, 8);
     this.numericUpDown1.Maximum  = new System.Decimal(new int[] {
         8,
         0,
         0,
         0
     });
     this.numericUpDown1.Minimum = new System.Decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numericUpDown1.Name      = "numericUpDown1";
     this.numericUpDown1.ReadOnly  = true;
     this.numericUpDown1.Size      = new System.Drawing.Size(40, 20);
     this.numericUpDown1.TabIndex  = 5;
     this.numericUpDown1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.numericUpDown1.Value     = new System.Decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // gridBand1
     //
     this.gridBand1.Axis = this.tChart1.Axes.Left;
     //
     // gridBand1.Band1
     //
     this.gridBand1.Band1.Color = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192)));
     //
     // gridBand1.Band2
     //
     this.gridBand1.Band2.Color = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // SeriesType_Surface
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(399, 256);
     this.Name  = "SeriesType_Surface";
     this.Load += new System.EventHandler(this.SeriesType_Surface_Load);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
 }
 /// <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(Contour_View2D));
     this.contourSeries1 = new Steema.TeeChart.Styles.Contour();
     this.checkBox1      = new System.Windows.Forms.CheckBox();
     this.rotate1        = new Steema.TeeChart.Tools.Rotate();
     this.panel1.SuspendLayout();
     this.chartContainer.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Size = new System.Drawing.Size(466, 63);
     this.textBox1.Text = "Contour series can also be displayed in 2D. The \"Z\" values are used to set the \"Y" +
                          "\" axis.\r\n\r\nExample: tChart1.Aspect.View3D = false;";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Location = new System.Drawing.Point(0, 63);
     this.panel1.Size     = new System.Drawing.Size(466, 34);
     //
     // tChart1
     //
     //
     //
     //
     this.tChart1.Aspect.View3D  = false;
     this.tChart1.Aspect.ZOffset = 0;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Bottom.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.Bottom.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.tChart1.Axes.Bottom.Grid.Style = System.Drawing.Drawing2D.DashStyle.Solid;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Bottom.MinorTicks.Visible = false;
     //
     //
     //
     this.tChart1.Axes.Bottom.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.Bottom.TicksInner.Visible = true;
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Depth.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.Depth.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.tChart1.Axes.Depth.Grid.Style = System.Drawing.Drawing2D.DashStyle.Solid;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Depth.MinorTicks.Visible = false;
     //
     //
     //
     this.tChart1.Axes.Depth.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.Depth.TicksInner.Visible = true;
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.DepthTop.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.DepthTop.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.tChart1.Axes.DepthTop.Grid.Style = System.Drawing.Drawing2D.DashStyle.Solid;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.DepthTop.MinorTicks.Visible = false;
     //
     //
     //
     this.tChart1.Axes.DepthTop.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.DepthTop.TicksInner.Visible = true;
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Left.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.Left.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.tChart1.Axes.Left.Grid.Style = System.Drawing.Drawing2D.DashStyle.Solid;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Left.MinorTicks.Visible = false;
     //
     //
     //
     this.tChart1.Axes.Left.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.Left.TicksInner.Visible = true;
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Right.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.Right.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.tChart1.Axes.Right.Grid.Style = System.Drawing.Drawing2D.DashStyle.Solid;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Right.MinorTicks.Visible = false;
     //
     //
     //
     this.tChart1.Axes.Right.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.Right.TicksInner.Visible = true;
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Top.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.Top.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.tChart1.Axes.Top.Grid.Style = System.Drawing.Drawing2D.DashStyle.Solid;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Axes.Top.MinorTicks.Visible = false;
     //
     //
     //
     this.tChart1.Axes.Top.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     //
     //
     //
     this.tChart1.Axes.Top.TicksInner.Visible = true;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Header.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))));
     this.tChart1.Header.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tChart1.Header.Brush.Gradient.SigmaFocus  = 0F;
     this.tChart1.Header.Brush.Gradient.SigmaScale  = 0F;
     this.tChart1.Header.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     //
     //
     //
     //
     //
     //
     this.tChart1.Header.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tChart1.Header.Lines            = new string[] {
         "tChart1"
     };
     this.tChart1.Header.Visible = false;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Legend.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(120)))), ((int)(((byte)(120)))));
     this.tChart1.Legend.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tChart1.Legend.Brush.Gradient.SigmaFocus  = 0F;
     this.tChart1.Legend.Brush.Gradient.SigmaScale  = 0F;
     this.tChart1.Legend.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70)))));
     this.tChart1.Legend.Brush.Gradient.Visible     = true;
     //
     //
     //
     //
     //
     //
     this.tChart1.Legend.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     //
     //
     //
     this.tChart1.Legend.Pen.Visible = false;
     //
     //
     //
     //
     //
     //
     this.tChart1.Panel.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     //
     //
     //
     this.tChart1.Panel.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70)))));
     this.tChart1.Panel.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tChart1.Panel.Brush.Gradient.SigmaFocus  = 0F;
     this.tChart1.Panel.Brush.Gradient.SigmaScale  = 0F;
     this.tChart1.Panel.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70)))));
     this.tChart1.Panel.Brush.Gradient.UseMiddle   = false;
     this.tChart1.Series.Add(this.contourSeries1);
     this.tChart1.Size = new System.Drawing.Size(466, 189);
     this.tChart1.Tools.Add(this.rotate1);
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Back.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(120)))), ((int)(((byte)(120)))));
     this.tChart1.Walls.Back.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tChart1.Walls.Back.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70)))));
     //
     //
     //
     this.tChart1.Walls.Back.Pen.Visible = false;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Bottom.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))));
     this.tChart1.Walls.Bottom.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tChart1.Walls.Bottom.Brush.Gradient.SigmaFocus  = 0F;
     this.tChart1.Walls.Bottom.Brush.Gradient.SigmaScale  = 0F;
     this.tChart1.Walls.Bottom.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     //
     //
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Left.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))));
     this.tChart1.Walls.Left.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tChart1.Walls.Left.Brush.Gradient.SigmaFocus  = 0F;
     this.tChart1.Walls.Left.Brush.Gradient.SigmaScale  = 0F;
     this.tChart1.Walls.Left.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     //
     //
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     //
     //
     //
     //
     //
     //
     this.tChart1.Walls.Right.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     //
     //
     //
     this.tChart1.Walls.Right.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))));
     this.tChart1.Walls.Right.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tChart1.Walls.Right.Brush.Gradient.SigmaFocus  = 0F;
     this.tChart1.Walls.Right.Brush.Gradient.SigmaScale  = 0F;
     this.tChart1.Walls.Right.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     //
     //
     //
     this.tChart1.Walls.Right.Pen.Visible = false;
     //
     // chartContainer
     //
     this.chartContainer.Location = new System.Drawing.Point(0, 97);
     this.chartContainer.Size     = new System.Drawing.Size(466, 189);
     //
     // contourSeries1
     //
     //
     //
     //
     this.contourSeries1.Brush.Color   = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163)))));
     this.contourSeries1.Brush.Visible = false;
     this.contourSeries1.Color         = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163)))));
     this.contourSeries1.ColorEach     = true;
     //
     //
     //
     //
     //
     //
     //
     //
     //
     this.contourSeries1.Marks.Brush.Gradient.EndColor    = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))));
     this.contourSeries1.Marks.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.contourSeries1.Marks.Brush.Gradient.SigmaFocus  = 0F;
     this.contourSeries1.Marks.Brush.Gradient.SigmaScale  = 0F;
     this.contourSeries1.Marks.Brush.Gradient.StartColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     //
     //
     //
     this.contourSeries1.Marks.Callout.ArrowHead     = Steema.TeeChart.Styles.ArrowHeadStyles.None;
     this.contourSeries1.Marks.Callout.ArrowHeadSize = 8;
     //
     //
     //
     this.contourSeries1.Marks.Callout.Brush.Color = System.Drawing.Color.Black;
     this.contourSeries1.Marks.Callout.Distance    = 0;
     this.contourSeries1.Marks.Callout.Draw3D      = false;
     this.contourSeries1.Marks.Callout.Length      = 10;
     this.contourSeries1.Marks.Callout.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     this.contourSeries1.Marks.Callout.Visible     = false;
     //
     //
     //
     //
     //
     //
     this.contourSeries1.Marks.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.contourSeries1.Marks.Transparent      = true;
     this.contourSeries1.NumXValues             = 25;
     this.contourSeries1.NumZValues             = 25;
     this.contourSeries1.PaletteMin             = 0;
     this.contourSeries1.PaletteStep            = 0;
     this.contourSeries1.PaletteStyle           = Steema.TeeChart.Styles.PaletteStyles.Pale;
     //
     //
     //
     this.contourSeries1.Pointer.HorizSize = 2;
     //
     //
     //
     this.contourSeries1.Pointer.Pen.Visible = false;
     this.contourSeries1.Pointer.Style       = Steema.TeeChart.Styles.PointerStyles.Rectangle;
     this.contourSeries1.Pointer.VertSize    = 2;
     this.contourSeries1.Pointer.Visible     = false;
     this.contourSeries1.Title         = "contourSeries1";
     this.contourSeries1.UseColorRange = false;
     this.contourSeries1.UsePalette    = true;
     //
     //
     //
     this.contourSeries1.XValues.DataMember = "X";
     this.contourSeries1.YPosition          = 0.20290816683830415;
     //
     //
     //
     this.contourSeries1.YValues.DataMember = "Y";
     //
     //
     //
     this.contourSeries1.ZValues.DataMember = "Z";
     //
     // checkBox1
     //
     this.checkBox1.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
     this.checkBox1.Location        = new System.Drawing.Point(24, 8);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(87, 21);
     this.checkBox1.TabIndex        = 0;
     this.checkBox1.Text            = "&View 3D ?";
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // Contour_View2D
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(466, 286);
     this.Name = "Contour_View2D";
     this.panel1.ResumeLayout(false);
     this.chartContainer.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }