/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.polarSeries1 = new Steema.TeeChart.Styles.Polar(); this.polarSeries2 = new Steema.TeeChart.Styles.Polar(); this.polarSeries3 = new Steema.TeeChart.Styles.Polar(); this.hScrollBar1 = new System.Windows.Forms.HScrollBar(); this.hScrollBar2 = new System.Windows.Forms.HScrollBar(); this.hScrollBar3 = new System.Windows.Forms.HScrollBar(); this.label1 = new System.Windows.Forms.Label(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // textBox1 // this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(466, 63); this.textBox1.TabIndex = 0; this.textBox1.Text = "Polar and Radar series can be transparent (percent from 0 to 100).\r\n\r\nExample : p" + "olarSeries1.Transparency = 40 ;"; // // panel1 // this.panel1.Controls.Add(this.label1); this.panel1.Controls.Add(this.hScrollBar3); this.panel1.Controls.Add(this.hScrollBar2); this.panel1.Controls.Add(this.hScrollBar1); this.panel1.Location = new System.Drawing.Point(0, 63); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(466, 41); this.panel1.TabIndex = 1; // // tChart1 // // // tChart1.Aspect // this.tChart1.Aspect.Elevation = 315; this.tChart1.Aspect.Orthogonal = false; this.tChart1.Aspect.Perspective = 0; this.tChart1.Aspect.Rotation = 360; this.tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit; this.tChart1.Aspect.View3D = false; // // tChart1.Header // this.tChart1.Header.Lines = new string[] { "Polar series : Transparency" }; 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.polarSeries1); this.tChart1.Series.Add(this.polarSeries2); this.tChart1.Series.Add(this.polarSeries3); this.tChart1.Size = new System.Drawing.Size(466, 182); this.tChart1.TabIndex = 2; // // polarSeries1 // // // polarSeries1.Brush // this.polarSeries1.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(178)), ((System.Byte)(255)), ((System.Byte)(0)), ((System.Byte)(0))); // // polarSeries1.Marks // // // polarSeries1.Marks.Symbol // // // polarSeries1.Marks.Symbol.Shadow // this.polarSeries1.Marks.Symbol.Shadow.Height = 1; this.polarSeries1.Marks.Symbol.Shadow.Visible = true; this.polarSeries1.Marks.Symbol.Shadow.Width = 1; // // polarSeries1.Pen // this.polarSeries1.Pen.Color = System.Drawing.Color.Red; // // polarSeries1.Pointer // this.polarSeries1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polarSeries1.Title = "polarSeries1"; // // polarSeries1.XValues // this.polarSeries1.XValues.DataMember = "Angle"; this.polarSeries1.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // polarSeries1.YValues // this.polarSeries1.YValues.DataMember = "Y"; // // polarSeries2 // // // polarSeries2.Brush // this.polarSeries2.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(178)), ((System.Byte)(0)), ((System.Byte)(128)), ((System.Byte)(0))); // // polarSeries2.Marks // // // polarSeries2.Marks.Symbol // // // polarSeries2.Marks.Symbol.Shadow // this.polarSeries2.Marks.Symbol.Shadow.Height = 1; this.polarSeries2.Marks.Symbol.Shadow.Visible = true; this.polarSeries2.Marks.Symbol.Shadow.Width = 1; // // polarSeries2.Pen // this.polarSeries2.Pen.Color = System.Drawing.Color.Green; // // polarSeries2.Pointer // this.polarSeries2.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polarSeries2.Title = "polarSeries2"; // // polarSeries2.XValues // this.polarSeries2.XValues.DataMember = "Angle"; this.polarSeries2.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // polarSeries2.YValues // this.polarSeries2.YValues.DataMember = "Y"; // // polarSeries3 // // // polarSeries3.Brush // this.polarSeries3.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(178)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(0))); // // polarSeries3.Marks // // // polarSeries3.Marks.Symbol // // // polarSeries3.Marks.Symbol.Shadow // this.polarSeries3.Marks.Symbol.Shadow.Height = 1; this.polarSeries3.Marks.Symbol.Shadow.Visible = true; this.polarSeries3.Marks.Symbol.Shadow.Width = 1; // // polarSeries3.Pen // this.polarSeries3.Pen.Color = System.Drawing.Color.Yellow; // // polarSeries3.Pointer // this.polarSeries3.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polarSeries3.Title = "polarSeries3"; // // polarSeries3.XValues // this.polarSeries3.XValues.DataMember = "Angle"; this.polarSeries3.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // polarSeries3.YValues // this.polarSeries3.YValues.DataMember = "Y"; // // hScrollBar1 // this.hScrollBar1.Location = new System.Drawing.Point(94, 12); this.hScrollBar1.Name = "hScrollBar1"; this.hScrollBar1.Size = new System.Drawing.Size(100, 17); this.hScrollBar1.TabIndex = 1; this.hScrollBar1.Value = 30; this.hScrollBar1.ValueChanged += new System.EventHandler(this.hScrollBar1_ValueChanged); // // hScrollBar2 // this.hScrollBar2.Location = new System.Drawing.Point(200, 12); this.hScrollBar2.Name = "hScrollBar2"; this.hScrollBar2.Size = new System.Drawing.Size(100, 17); this.hScrollBar2.TabIndex = 2; this.hScrollBar2.Value = 30; this.hScrollBar2.ValueChanged += new System.EventHandler(this.hScrollBar2_ValueChanged); // // hScrollBar3 // this.hScrollBar3.Location = new System.Drawing.Point(307, 12); this.hScrollBar3.Name = "hScrollBar3"; this.hScrollBar3.Size = new System.Drawing.Size(100, 17); this.hScrollBar3.TabIndex = 3; this.hScrollBar3.Value = 30; this.hScrollBar3.ValueChanged += new System.EventHandler(this.hScrollBar3_ValueChanged); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(7, 12); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(77, 16); this.label1.TabIndex = 0; this.label1.Text = "&Transparency:"; this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight; // // Polar_Transparency // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(466, 286); this.Name = "Polar_Transparency"; 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(Polar_LabelsInside)); this.polarSeries1 = new Steema.TeeChart.Styles.Polar(); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.panel1.SuspendLayout(); this.chartContainer.SuspendLayout(); this.SuspendLayout(); // // textBox1 // this.textBox1.Size = new System.Drawing.Size(466, 63); this.textBox1.Text = "Polar (and Clock, and Radar) series can display labels inside/outside circle.\r\n\r\n" + "Example: polarSeries1.CircleLabelsInside = true;"; // // 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.Elevation = 315; this.tChart1.Aspect.ElevationFloat = 315; this.tChart1.Aspect.Orthogonal = false; this.tChart1.Aspect.Perspective = 0; this.tChart1.Aspect.Rotation = 360; this.tChart1.Aspect.RotationFloat = 360; 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.LogarithmicBase = 2; // // // 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.Axes.Visible = false; // // // // // // // // // 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[] { "Polar series : CircleLabelsInside example" }; // // // // // // // // // 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.Legend.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.Series.Add(this.polarSeries1); this.tChart1.Size = new System.Drawing.Size(466, 189); // // // // // // // // // // // // 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); // // polarSeries1 // // // // this.polarSeries1.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(230)))), ((int)(((byte)(90))))); this.polarSeries1.Circled = true; // // // this.polarSeries1.CircleGradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.polarSeries1.CircleGradient.Visible = true; this.polarSeries1.CircleLabels = true; // // // // // // this.polarSeries1.CircleLabelsFont.Brush.Color = System.Drawing.Color.Red; this.polarSeries1.CircleLabelsInside = true; this.polarSeries1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(230)))), ((int)(((byte)(90))))); this.polarSeries1.ColorEach = false; // // // // // // // // // this.polarSeries1.Marks.Brush.Gradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0))))); this.polarSeries1.Marks.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.polarSeries1.Marks.Brush.Gradient.SigmaFocus = 0F; this.polarSeries1.Marks.Brush.Gradient.SigmaScale = 0F; this.polarSeries1.Marks.Brush.Gradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); // // // this.polarSeries1.Marks.Callout.ArrowHead = Steema.TeeChart.Styles.ArrowHeadStyles.None; this.polarSeries1.Marks.Callout.ArrowHeadSize = 8; // // // this.polarSeries1.Marks.Callout.Brush.Color = System.Drawing.Color.Black; this.polarSeries1.Marks.Callout.Distance = 0; this.polarSeries1.Marks.Callout.Draw3D = false; this.polarSeries1.Marks.Callout.Length = 10; this.polarSeries1.Marks.Callout.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polarSeries1.Marks.Callout.Visible = false; // // // // // // this.polarSeries1.Marks.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.polarSeries1.Marks.Transparent = true; // // // this.polarSeries1.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163))))); // // // this.polarSeries1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polarSeries1.Title = "polarSeries1"; // // // this.polarSeries1.XValues.DataMember = "Angle"; this.polarSeries1.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // // this.polarSeries1.YValues.DataMember = "Y"; // // 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, 8); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(139, 21); this.checkBox1.TabIndex = 0; this.checkBox1.Text = "&Circle labels inside"; this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); // // Polar_LabelsInside // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(466, 286); this.Name = "Polar_LabelsInside"; 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.button1 = new System.Windows.Forms.Button(); this.polar1 = new Steema.TeeChart.Styles.Polar(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // textBox1 // this.textBox1.Name = "textBox1"; this.textBox1.Text = "New Gradient property for \"Circled\" series like Smith, Polar, Radar, Clock and W" + "ind-Rose. "; // // panel1 // this.panel1.Controls.Add(this.button1); this.panel1.Name = "panel1"; // // tChart1 // // // tChart1.Aspect // this.tChart1.Aspect.Elevation = 315; this.tChart1.Aspect.Orthogonal = false; this.tChart1.Aspect.Perspective = 0; this.tChart1.Aspect.Rotation = 360; this.tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit; this.tChart1.Aspect.View3D = false; this.tChart1.Cursor = System.Windows.Forms.Cursors.Default; // // tChart1.Header // this.tChart1.Header.Lines = new string[0]; // // 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))); // // tChart1.Panel.Gradient // this.tChart1.Panel.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(128)), ((System.Byte)(128)), ((System.Byte)(128))); this.tChart1.Panel.Brush.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224))); this.tChart1.Panel.Brush.Gradient.UseMiddle = true; this.tChart1.Panel.Brush.Gradient.Visible = true; // // tChart1.Panel.Gradient // this.tChart1.Panel.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(128)), ((System.Byte)(128)), ((System.Byte)(128))); this.tChart1.Panel.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224))); this.tChart1.Panel.Gradient.UseMiddle = true; this.tChart1.Panel.Gradient.Visible = true; this.tChart1.Series.Add(this.polar1); // // 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(96, 23); this.button1.TabIndex = 0; this.button1.Text = "Edit Gradient..."; this.button1.Click += new System.EventHandler(this.button1_Click); // // polar1 // // // polar1.Brush // this.polar1.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(128)), ((System.Byte)(0))); this.polar1.Circled = true; // // polar1.Marks // // // polar1.Marks.Symbol // // // polar1.Marks.Symbol.Shadow // this.polar1.Marks.Symbol.Shadow.Height = 1; this.polar1.Marks.Symbol.Shadow.Visible = true; this.polar1.Marks.Symbol.Shadow.Width = 1; // // polar1.Pen // this.polar1.Pen.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(128)), ((System.Byte)(0))); // // polar1.Pointer // // // polar1.Pointer.Brush // this.polar1.Pointer.Brush.Color = System.Drawing.Color.Red; this.polar1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polar1.Title = "polar1"; // // polar1.XValues // this.polar1.XValues.DataMember = "Angle"; this.polar1.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // polar1.YValues // this.polar1.YValues.DataMember = "Y"; // // Polar_Gradient // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(440, 317); this.Name = "Polar_Gradient"; 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.polar1 = new Steema.TeeChart.Styles.Polar(); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // textBox1 // this.textBox1.Name = "textBox1"; this.textBox1.Text = "Polar Series can now fill the background using a Gradient, and provides a DrawZon" + "e method to fill round \"donut\" zones. \r\n\r\npolar1.DrawZone(300, 700, tChart1.Aspe" + "ct.Width3D);"; // // panel1 // this.panel1.Controls.Add(this.checkBox1); this.panel1.Name = "panel1"; // // tChart1 // // // tChart1.Aspect // this.tChart1.Aspect.Elevation = 315; this.tChart1.Aspect.Orthogonal = false; this.tChart1.Aspect.Perspective = 0; this.tChart1.Aspect.Rotation = 360; this.tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit; this.tChart1.Aspect.View3D = false; // // tChart1.Header // this.tChart1.Header.Lines = new string[] { "Polar background zones" }; 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.MiddleColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224))); this.tChart1.Panel.Brush.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192))); this.tChart1.Panel.Brush.Gradient.UseMiddle = true; this.tChart1.Panel.Brush.Gradient.Visible = true; // // tChart1.Panel.Gradient // this.tChart1.Panel.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224))); this.tChart1.Panel.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192))); this.tChart1.Panel.Gradient.UseMiddle = true; this.tChart1.Panel.Gradient.Visible = true; this.tChart1.Series.Add(this.polar1); // // polar1 // // // polar1.Brush // this.polar1.Brush.Color = System.Drawing.Color.Red; this.polar1.Brush.Visible = false; this.polar1.Circled = true; // // polar1.Marks // // // polar1.Marks.Symbol // // // polar1.Marks.Symbol.Shadow // this.polar1.Marks.Symbol.Shadow.Height = 1; this.polar1.Marks.Symbol.Shadow.Visible = true; this.polar1.Marks.Symbol.Shadow.Width = 1; // // polar1.Pen // this.polar1.Pen.Color = System.Drawing.Color.Red; // // polar1.Pointer // // // polar1.Pointer.Brush // this.polar1.Pointer.Brush.Color = System.Drawing.Color.Red; this.polar1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polar1.Title = "polar1"; // // polar1.XValues // this.polar1.XValues.DataMember = "Angle"; this.polar1.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // polar1.YValues // this.polar1.YValues.DataMember = "Y"; this.polar1.BeforeDrawValues += new Steema.TeeChart.PaintChartEventHandler(this.polar1_BeforeDrawValues); // // checkBox1 // this.checkBox1.Checked = true; this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked; this.checkBox1.Location = new System.Drawing.Point(16, 8); this.checkBox1.Name = "checkBox1"; this.checkBox1.TabIndex = 0; this.checkBox1.Text = "Draw Zones"; this.checkBox1.Click += new System.EventHandler(this.checkBox1_Click); // // Polar_Zones // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(440, 317); this.Name = "Polar_Zones"; 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.components = new System.ComponentModel.Container(); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.checkBox2 = new System.Windows.Forms.CheckBox(); this.checkBox3 = new System.Windows.Forms.CheckBox(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.polarSeries1 = new Steema.TeeChart.Styles.Polar(); this.polarSeries2 = new Steema.TeeChart.Styles.Polar(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // textBox1 // this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(466, 40); this.textBox1.Text = "Polar Series"; // // panel1 // 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, 40); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(466, 33); // // tChart1 // // // tChart1.Aspect // this.tChart1.Aspect.Elevation = 315; this.tChart1.Aspect.Orthogonal = false; this.tChart1.Aspect.Perspective = 0; this.tChart1.Aspect.Rotation = 360; this.tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit; this.tChart1.Aspect.View3D = false; // // tChart1.Axes // // // tChart1.Axes.Bottom // this.tChart1.Axes.Bottom.Automatic = false; this.tChart1.Axes.Bottom.AutomaticMaximum = false; this.tChart1.Axes.Bottom.AutomaticMinimum = false; this.tChart1.Axes.Bottom.Increment = 30; this.tChart1.Axes.Bottom.Maximum = 992; this.tChart1.Axes.Bottom.Minimum = 3; // // tChart1.Header // this.tChart1.Header.Alignment = System.Drawing.StringAlignment.Near; // // tChart1.Header.Font // this.tChart1.Header.Font.Bold = true; this.tChart1.Header.Font.Italic = true; this.tChart1.Header.Font.Size = 10; this.tChart1.Header.Lines = new string[] { "Wind direction and speed" }; this.tChart1.Location = new System.Drawing.Point(0, 73); 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.MiddleColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224))); this.tChart1.Panel.Brush.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192))); this.tChart1.Panel.Brush.Gradient.UseMiddle = true; this.tChart1.Panel.Brush.Gradient.Visible = true; // // tChart1.Panel.Gradient // this.tChart1.Panel.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224))); this.tChart1.Panel.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192))); this.tChart1.Panel.Gradient.UseMiddle = true; this.tChart1.Panel.Gradient.Visible = true; this.tChart1.Series.Add(this.polarSeries1); this.tChart1.Series.Add(this.polarSeries2); this.tChart1.Size = new System.Drawing.Size(466, 213); this.tChart1.AfterDraw += new Steema.TeeChart.PaintChartEventHandler(this.tChart1_AfterDraw); // // 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, 8); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(60, 21); this.checkBox1.TabIndex = 0; this.checkBox1.Text = "&Circled"; 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(80, 8); this.checkBox2.Name = "checkBox2"; this.checkBox2.Size = new System.Drawing.Size(87, 21); this.checkBox2.TabIndex = 1; this.checkBox2.Text = "&Transparent"; this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged); // // checkBox3 // this.checkBox3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.checkBox3.Location = new System.Drawing.Point(200, 8); this.checkBox3.Name = "checkBox3"; this.checkBox3.Size = new System.Drawing.Size(96, 21); this.checkBox3.TabIndex = 2; this.checkBox3.Text = "&Animate"; this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged); // // timer1 // this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // polarSeries1 // // // polarSeries1.Brush // this.polarSeries1.Brush.Color = System.Drawing.Color.Red; this.polarSeries1.Circled = true; this.polarSeries1.CircleLabels = true; this.polarSeries1.CircleLabelsInside = true; this.polarSeries1.ClockWiseLabels = true; this.polarSeries1.ColorEach = true; // // polarSeries1.Marks // // // polarSeries1.Marks.Symbol // // // polarSeries1.Marks.Symbol.Shadow // this.polarSeries1.Marks.Symbol.Shadow.Height = 1; this.polarSeries1.Marks.Symbol.Shadow.Visible = true; this.polarSeries1.Marks.Symbol.Shadow.Width = 1; // // polarSeries1.Pen // this.polarSeries1.Pen.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(0)), ((System.Byte)(0))); // // polarSeries1.Pointer // this.polarSeries1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polarSeries1.Title = "polar2"; // // polarSeries1.XValues // this.polarSeries1.XValues.DataMember = "Angle"; this.polarSeries1.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // polarSeries1.YValues // this.polarSeries1.YValues.DataMember = "Y"; // // polarSeries2 // // // polarSeries2.Brush // this.polarSeries2.Brush.Color = System.Drawing.Color.Green; this.polarSeries2.Circled = true; this.polarSeries2.CircleLabels = true; this.polarSeries2.CircleLabelsInside = true; this.polarSeries2.ClockWiseLabels = true; this.polarSeries2.ColorEach = true; // // polarSeries2.Marks // // // polarSeries2.Marks.Symbol // // // polarSeries2.Marks.Symbol.Shadow // this.polarSeries2.Marks.Symbol.Shadow.Height = 1; this.polarSeries2.Marks.Symbol.Shadow.Visible = true; this.polarSeries2.Marks.Symbol.Shadow.Width = 1; // // polarSeries2.Pen // this.polarSeries2.Pen.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(0)), ((System.Byte)(0))); // // polarSeries2.Pointer // this.polarSeries2.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polarSeries2.Title = "polar2"; // // polarSeries2.XValues // this.polarSeries2.XValues.DataMember = "Angle"; this.polarSeries2.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // polarSeries2.YValues // this.polarSeries2.YValues.DataMember = "Y"; // // SeriesType_Polar // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(466, 286); this.Name = "SeriesType_Polar"; 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(Polar_Nulls)); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.polar1 = new Steema.TeeChart.Styles.Polar(); this.panel1.SuspendLayout(); this.chartContainer.SuspendLayout(); this.SuspendLayout(); // // textBox1 // this.textBox1.Text = "Polar and radar series now support null points (controlled via the TreatNulls pro" + "perty). Uncheck the \"Hide null points\" checkbox to see the difference between \"n" + "ormal\" and \"null\" style(s)."; // // panel1 // this.panel1.Controls.Add(this.checkBox1); // // tChart1 // // // // this.tChart1.Aspect.Elevation = 315; this.tChart1.Aspect.ElevationFloat = 315; this.tChart1.Aspect.Orthogonal = false; this.tChart1.Aspect.Perspective = 0; this.tChart1.Aspect.Rotation = 360; this.tChart1.Aspect.RotationFloat = 360; this.tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias; this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit; this.tChart1.Aspect.View3D = false; // // // this.tChart1.Header.Lines = new string[] { "Polar null points" }; // // // // // // // // // 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.Panel.Brush.Gradient.UseMiddle = true; this.tChart1.Panel.Brush.Gradient.Visible = true; this.tChart1.Series.Add(this.polar1); this.tChart1.Size = new System.Drawing.Size(440, 205); // // // // // // // // // this.tChart1.Walls.Back.Brush.Visible = true; // // checkBox1 // this.checkBox1.Checked = true; this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked; this.checkBox1.Location = new System.Drawing.Point(12, 16); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(98, 17); this.checkBox1.TabIndex = 0; this.checkBox1.Text = "Hide null points"; #if VS2005 this.checkBox1.UseVisualStyleBackColor = true; this.checkBox1.AutoSize = true; #endif this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); // // polar1 // // // // this.polar1.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192))))); this.polar1.Brush.Solid = false; this.polar1.Brush.Style = System.Drawing.Drawing2D.HatchStyle.DarkUpwardDiagonal; this.polar1.ColorEach = false; // // // // // // this.polar1.Marks.Callout.ArrowHead = Steema.TeeChart.Styles.ArrowHeadStyles.None; this.polar1.Marks.Callout.ArrowHeadSize = 8; // // // this.polar1.Marks.Callout.Brush.Color = System.Drawing.Color.Black; this.polar1.Marks.Callout.Distance = 0; this.polar1.Marks.Callout.Draw3D = false; this.polar1.Marks.Callout.Length = 10; this.polar1.Marks.Callout.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; // // // this.polar1.Pen.Color = System.Drawing.Color.Red; // // // this.polar1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polar1.Pointer.Visible = true; this.polar1.Title = "polar1"; this.polar1.TreatNulls = Steema.TeeChart.Styles.TreatNullsStyle.DoNotPaint; // // // this.polar1.XValues.DataMember = "Angle"; this.polar1.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // // this.polar1.YValues.DataMember = "Y"; // // Polar_Nulls // this.ClientSize = new System.Drawing.Size(440, 317); this.Name = "Polar_Nulls"; this.Load += new System.EventHandler(this.Polar_Nulls_Load); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); 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.polarSeries1 = new Steema.TeeChart.Styles.Polar(); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // textBox1 // this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(466, 63); this.textBox1.Text = "The Polar circle labels can be displayed in \"ClockWise\" orientation.\r\n\r\nExample: " + "polarSeries1.ClockWiseLabels = true ;"; // // panel1 // this.panel1.Controls.Add(this.checkBox1); this.panel1.Location = new System.Drawing.Point(0, 63); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(466, 34); // // tChart1 // // // tChart1.Aspect // this.tChart1.Aspect.Elevation = 315; this.tChart1.Aspect.Orthogonal = false; this.tChart1.Aspect.Perspective = 0; this.tChart1.Aspect.Rotation = 360; this.tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit; this.tChart1.Aspect.View3D = false; // // tChart1.Header // this.tChart1.Header.Lines = new string[] { "tChart1"}; this.tChart1.Header.Visible = false; this.tChart1.Location = new System.Drawing.Point(0, 97); 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.MiddleColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224))); this.tChart1.Panel.Brush.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192))); this.tChart1.Panel.Brush.Gradient.UseMiddle = true; this.tChart1.Panel.Brush.Gradient.Visible = true; // // tChart1.Panel.Gradient // this.tChart1.Panel.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224))); this.tChart1.Panel.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(192)), ((System.Byte)(192)), ((System.Byte)(192))); this.tChart1.Panel.Gradient.UseMiddle = true; this.tChart1.Panel.Gradient.Visible = true; this.tChart1.Series.Add(this.polarSeries1); this.tChart1.Size = new System.Drawing.Size(466, 189); // // polarSeries1 // // // polarSeries1.Brush // this.polarSeries1.Brush.Color = System.Drawing.Color.Red; this.polarSeries1.Brush.Visible = false; this.polarSeries1.Circled = true; this.polarSeries1.CircleLabels = true; this.polarSeries1.ClockWiseLabels = true; // // polarSeries1.Marks // // // polarSeries1.Marks.Symbol // // // polarSeries1.Marks.Symbol.Shadow // this.polarSeries1.Marks.Symbol.Shadow.Height = 1; this.polarSeries1.Marks.Symbol.Shadow.Visible = true; this.polarSeries1.Marks.Symbol.Shadow.Width = 1; // // polarSeries1.Pen // this.polarSeries1.Pen.Color = System.Drawing.Color.Red; // // polarSeries1.Pointer // this.polarSeries1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polarSeries1.Title = "polarSeries1"; // // polarSeries1.XValues // this.polarSeries1.XValues.DataMember = "Angle"; this.polarSeries1.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // polarSeries1.YValues // this.polarSeries1.YValues.DataMember = "Y"; // // 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.Size = new System.Drawing.Size(144, 21); this.checkBox1.TabIndex = 0; this.checkBox1.Text = "&ClockWise labels"; this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); // // Polar_ClockWise // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(466, 286); this.Name = "Polar_ClockWise"; 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(CustomPolar_GetPointerStyle)); this.polar1 = new Steema.TeeChart.Styles.Polar(); this.chartContainer.SuspendLayout(); this.SuspendLayout(); // // textBox1 // this.textBox1.Text = resources.GetString("textBox1.Text"); // // tChart1 // // // // this.tChart1.Aspect.Elevation = 315; this.tChart1.Aspect.ElevationFloat = 315; this.tChart1.Aspect.Orthogonal = false; this.tChart1.Aspect.Perspective = 0; this.tChart1.Aspect.Rotation = 360; this.tChart1.Aspect.RotationFloat = 360; this.tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias; this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias; this.tChart1.Aspect.View3D = false; // // // // // // this.tChart1.Axes.Bottom.Automatic = true; // // // this.tChart1.Axes.Bottom.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.Bottom.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); this.tChart1.Axes.Bottom.Grid.Style = System.Drawing.Drawing2D.DashStyle.Dash; this.tChart1.Axes.Bottom.Grid.ZPosition = 0; // // // // // // // // // this.tChart1.Axes.Bottom.Labels.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.Bottom.MinorGrid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.Bottom.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // this.tChart1.Axes.Bottom.TicksInner.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // // // // // // // this.tChart1.Axes.Bottom.Title.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tChart1.Axes.Bottom.Title.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.Depth.Automatic = true; // // // this.tChart1.Axes.Depth.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.Depth.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); this.tChart1.Axes.Depth.Grid.Style = System.Drawing.Drawing2D.DashStyle.Dash; this.tChart1.Axes.Depth.Grid.ZPosition = 0; // // // // // // // // // this.tChart1.Axes.Depth.Labels.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.Depth.MinorGrid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.Depth.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // this.tChart1.Axes.Depth.TicksInner.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // // // // // // // this.tChart1.Axes.Depth.Title.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tChart1.Axes.Depth.Title.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.DepthTop.Automatic = true; // // // this.tChart1.Axes.DepthTop.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.DepthTop.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); this.tChart1.Axes.DepthTop.Grid.Style = System.Drawing.Drawing2D.DashStyle.Dash; this.tChart1.Axes.DepthTop.Grid.ZPosition = 0; // // // // // // // // // this.tChart1.Axes.DepthTop.Labels.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.DepthTop.MinorGrid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.DepthTop.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // this.tChart1.Axes.DepthTop.TicksInner.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // // // // // // // this.tChart1.Axes.DepthTop.Title.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tChart1.Axes.DepthTop.Title.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.Left.Automatic = true; // // // this.tChart1.Axes.Left.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.Left.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); this.tChart1.Axes.Left.Grid.Style = System.Drawing.Drawing2D.DashStyle.Dash; this.tChart1.Axes.Left.Grid.ZPosition = 0; // // // // // // // // // this.tChart1.Axes.Left.Labels.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.Left.MinorGrid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.Left.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // this.tChart1.Axes.Left.TicksInner.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // // // // // // // this.tChart1.Axes.Left.Title.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tChart1.Axes.Left.Title.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.Right.Automatic = true; // // // this.tChart1.Axes.Right.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.Right.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); this.tChart1.Axes.Right.Grid.Style = System.Drawing.Drawing2D.DashStyle.Dash; this.tChart1.Axes.Right.Grid.ZPosition = 0; // // // // // // // // // this.tChart1.Axes.Right.Labels.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.Right.MinorGrid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.Right.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // this.tChart1.Axes.Right.TicksInner.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // // // // // // // this.tChart1.Axes.Right.Title.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tChart1.Axes.Right.Title.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.Top.Automatic = true; // // // this.tChart1.Axes.Top.AxisPen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.Top.Grid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); this.tChart1.Axes.Top.Grid.Style = System.Drawing.Drawing2D.DashStyle.Dash; this.tChart1.Axes.Top.Grid.ZPosition = 0; // // // // // // // // // this.tChart1.Axes.Top.Labels.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Axes.Top.MinorGrid.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Axes.Top.Ticks.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // this.tChart1.Axes.Top.TicksInner.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // // // // // // // this.tChart1.Axes.Top.Title.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tChart1.Axes.Top.Title.Font.Unit = System.Drawing.GraphicsUnit.World; // // // // // // this.tChart1.Footer.Font.Unit = System.Drawing.GraphicsUnit.World; // // // // // // this.tChart1.Header.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192))))); // // // this.tChart1.Header.Gradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.tChart1.Header.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.tChart1.Header.Gradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0))))); this.tChart1.Header.Gradient.UseMiddle = true; // // // // // // this.tChart1.Header.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); this.tChart1.Header.Font.Unit = System.Drawing.GraphicsUnit.World; this.tChart1.Header.Lines = new string[] { "CustomPolar GetPointerStyle + Clicked" }; // // // this.tChart1.Header.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // // // // this.tChart1.Header.Shadow.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(169)))), ((int)(((byte)(169))))); // // // // // // // // // this.tChart1.Legend.Gradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.tChart1.Legend.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.tChart1.Legend.Gradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0))))); this.tChart1.Legend.Gradient.UseMiddle = true; // // // this.tChart1.Legend.DividingLines.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // // // // this.tChart1.Legend.Font.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tChart1.Legend.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Legend.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // // // // this.tChart1.Legend.Shadow.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tChart1.Legend.Shadow.Visible = true; // // // // // // this.tChart1.Legend.Title.Font.Bold = true; this.tChart1.Legend.Title.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.tChart1.Legend.Title.Pen.Visible = false; this.tChart1.Legend.Visible = false; // // // // // // this.tChart1.Panel.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(233)))), ((int)(((byte)(216))))); // // // this.tChart1.Panel.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tChart1.Series.Add(this.polar1); // // // // // // this.tChart1.SubFooter.Font.Unit = System.Drawing.GraphicsUnit.World; // // // // // // this.tChart1.SubHeader.Font.Unit = System.Drawing.GraphicsUnit.World; // // // // // // this.tChart1.Walls.Back.AutoHide = false; // // // this.tChart1.Walls.Back.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192))))); // // // this.tChart1.Walls.Back.Gradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.tChart1.Walls.Back.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.tChart1.Walls.Back.Gradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0))))); this.tChart1.Walls.Back.Gradient.UseMiddle = true; this.tChart1.Walls.Back.Brush.Visible = false; // // // this.tChart1.Walls.Back.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Walls.Bottom.AutoHide = false; // // // this.tChart1.Walls.Bottom.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); // // // this.tChart1.Walls.Bottom.Gradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.tChart1.Walls.Bottom.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.tChart1.Walls.Bottom.Gradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0))))); this.tChart1.Walls.Bottom.Gradient.UseMiddle = true; // // // this.tChart1.Walls.Bottom.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Walls.Left.AutoHide = false; // // // this.tChart1.Walls.Left.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(224))))); // // // this.tChart1.Walls.Left.Gradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.tChart1.Walls.Left.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.tChart1.Walls.Left.Gradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0))))); this.tChart1.Walls.Left.Gradient.UseMiddle = true; // // // this.tChart1.Walls.Left.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); // // // this.tChart1.Walls.Right.AutoHide = false; // // // this.tChart1.Walls.Right.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(224))))); // // // this.tChart1.Walls.Right.Gradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.tChart1.Walls.Right.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.tChart1.Walls.Right.Gradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0))))); this.tChart1.Walls.Right.Gradient.UseMiddle = true; // // // this.tChart1.Walls.Right.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tChart1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.tChart1_MouseMove); // // polar1 // // // // this.polar1.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(224)))), ((int)(((byte)(77)))), ((int)(((byte)(44))))); // // // this.polar1.CircleLabelsFont.Unit = System.Drawing.GraphicsUnit.World; // // // this.polar1.Font.Unit = System.Drawing.GraphicsUnit.World; // // // // // // this.polar1.Marks.Callout.ArrowHead = Steema.TeeChart.Styles.ArrowHeadStyles.None; this.polar1.Marks.Callout.ArrowHeadSize = 8; this.polar1.Marks.Callout.Distance = 0; this.polar1.Marks.Callout.Draw3D = false; this.polar1.Marks.Callout.Length = 10; this.polar1.Marks.Callout.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; // // // this.polar1.Marks.Font.Unit = System.Drawing.GraphicsUnit.World; // // // this.polar1.Marks.Shadow.Visible = true; // // // // // // this.polar1.Marks.Symbol.Shadow.Visible = true; // // // this.polar1.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(224)))), ((int)(((byte)(77)))), ((int)(((byte)(44))))); // // // this.polar1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polar1.Pointer.Visible = true; this.polar1.Title = "polar1"; // // // this.polar1.XValues.DataMember = "Angle"; this.polar1.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // // this.polar1.YValues.DataMember = "Y"; this.polar1.GetPointerStyle += new Steema.TeeChart.Styles.CustomPolar.GetPointerStyleEventHandler(this.polar1_GetPointerStyle); // // CustomPolar_GetPointerStyle // #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 = "CustomPolar_GetPointerStyle"; this.Text = "CustomPolar_GetPointerStyle"; 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Circled_Gradient)); this.button1 = new System.Windows.Forms.Button(); this.polar1 = new Steema.TeeChart.Styles.Polar(); this.panel1.SuspendLayout(); this.chartContainer.SuspendLayout(); this.SuspendLayout(); // // textBox1 // this.textBox1.Text = "New Gradient property for \"Circled\" series like Smith, Polar, Radar, Clock and W" + "ind-Rose. "; // // panel1 // this.panel1.Controls.Add(this.button1); // // tChart1 // // // // this.tChart1.Aspect.Elevation = 315; this.tChart1.Aspect.ElevationFloat = 315; this.tChart1.Aspect.Orthogonal = false; this.tChart1.Aspect.Perspective = 0; this.tChart1.Aspect.Rotation = 360; this.tChart1.Aspect.RotationFloat = 360; this.tChart1.Aspect.View3D = false; this.tChart1.Aspect.ZOffset = 0; this.tChart1.Cursor = System.Windows.Forms.Cursors.Default; // // // this.tChart1.Header.Lines = new string[0]; // // // 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.Panel.Brush.Gradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.tChart1.Panel.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.tChart1.Panel.Brush.Gradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.tChart1.Panel.Brush.Gradient.UseMiddle = true; this.tChart1.Series.Add(this.polar1); this.tChart1.Size = new System.Drawing.Size(440, 205); // // 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(96, 23); this.button1.TabIndex = 0; this.button1.Text = "Edit Gradient..."; this.button1.Click += new System.EventHandler(this.button1_Click); // // polar1 // // // // this.polar1.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163))))); this.polar1.Circled = true; // // // this.polar1.CircleGradient.Visible = true; this.polar1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163))))); this.polar1.ColorEach = false; // // // // // // this.polar1.Marks.Callout.ArrowHead = Steema.TeeChart.Styles.ArrowHeadStyles.None; this.polar1.Marks.Callout.ArrowHeadSize = 8; // // // this.polar1.Marks.Callout.Brush.Color = System.Drawing.Color.Black; this.polar1.Marks.Callout.Distance = 0; this.polar1.Marks.Callout.Draw3D = false; this.polar1.Marks.Callout.Length = 10; this.polar1.Marks.Callout.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polar1.Marks.Callout.Visible = false; // // // this.polar1.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163))))); // // // // // // this.polar1.Pointer.Brush.Color = System.Drawing.Color.Red; this.polar1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polar1.Title = "polar1"; // // // this.polar1.XValues.DataMember = "Angle"; this.polar1.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // // this.polar1.YValues.DataMember = "Y"; // // Circled_Gradient // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(440, 317); this.Name = "Circled_Gradient"; 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Polar_Smooth)); this.polar1 = new Steema.TeeChart.Styles.Polar(); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.polar2 = new Steema.TeeChart.Styles.Polar(); this.smoothing1 = new Steema.TeeChart.Functions.Smoothing(); this.checkBox2 = new System.Windows.Forms.CheckBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.checkBox3 = new System.Windows.Forms.CheckBox(); this.panel1.SuspendLayout(); this.chartContainer.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // textBox1 // this.textBox1.Text = "The smoothing function can be applied to Polar charts.\r\n"; // // panel1 // this.panel1.Controls.Add(this.groupBox1); this.panel1.Controls.Add(this.checkBox2); this.panel1.Controls.Add(this.checkBox1); this.panel1.Size = new System.Drawing.Size(440, 63); // // tChart1 // // // // this.tChart1.Aspect.Elevation = 315; this.tChart1.Aspect.ElevationFloat = 315; this.tChart1.Aspect.Orthogonal = false; this.tChart1.Aspect.Perspective = 0; this.tChart1.Aspect.Rotation = 360; this.tChart1.Aspect.RotationFloat = 360; this.tChart1.Aspect.View3D = false; this.tChart1.Aspect.ZOffset = 0; // // // // // // // // // // // // 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[] { "Smooth Polar Chart" }; // // // // // // // // // 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.Panel.Brush.Gradient.UseMiddle = true; // // // // // // this.tChart1.Panel.ImageBevel.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(0)))), ((int)(((byte)(92))))); this.tChart1.Panel.ImageBevel.Visible = true; this.tChart1.Panel.ImageBevel.Width = 6; this.tChart1.Series.Add(this.polar2); this.tChart1.Series.Add(this.polar1); this.tChart1.Size = new System.Drawing.Size(440, 181); // // // // // // // // // // // // 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; // // chartContainer // this.chartContainer.Location = new System.Drawing.Point(0, 136); this.chartContainer.Size = new System.Drawing.Size(440, 181); // // polar1 // // // // this.polar1.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(156)))), ((int)(((byte)(53))))); this.polar1.Brush.Visible = false; // // // this.polar1.CircleGradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.polar1.CircleGradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.polar1.CircleGradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.polar1.CircleGradient.UseMiddle = true; this.polar1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(156)))), ((int)(((byte)(53))))); this.polar1.ColorEach = false; // // // // // // // // // this.polar1.Marks.Brush.Gradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.polar1.Marks.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.polar1.Marks.Brush.Gradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0))))); this.polar1.Marks.Brush.Gradient.UseMiddle = true; // // // this.polar1.Marks.Callout.ArrowHead = Steema.TeeChart.Styles.ArrowHeadStyles.None; this.polar1.Marks.Callout.ArrowHeadSize = 8; // // // this.polar1.Marks.Callout.Brush.Color = System.Drawing.Color.Black; this.polar1.Marks.Callout.Distance = 0; this.polar1.Marks.Callout.Draw3D = false; this.polar1.Marks.Callout.Length = 10; this.polar1.Marks.Callout.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polar1.Marks.Callout.Visible = false; // // // this.polar1.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(156)))), ((int)(((byte)(53))))); // // // // // // this.polar1.Pointer.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))); this.polar1.Pointer.HorizSize = 2; this.polar1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polar1.Pointer.VertSize = 2; this.polar1.Title = "Original"; // // // this.polar1.XValues.DataMember = "Angle"; this.polar1.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // // this.polar1.YValues.DataMember = "Y"; // // checkBox1 // this.checkBox1.Checked = true; this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked; this.checkBox1.Location = new System.Drawing.Point(16, 8); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(136, 24); this.checkBox1.TabIndex = 0; this.checkBox1.Text = "Show &Original Polar"; this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); // // polar2 // // // // this.polar2.Brush.Color = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163))))); this.polar2.Brush.Image = ((System.Drawing.Image)(resources.GetObject("polar2.Brush.Image"))); this.polar2.Brush.ImageMode = Steema.TeeChart.Drawing.ImageMode.Tile; this.polar2.Brush.Solid = false; this.polar2.Brush.Style = System.Drawing.Drawing2D.HatchStyle.LargeCheckerBoard; // // // this.polar2.CircleGradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.polar2.CircleGradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.polar2.CircleGradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192))))); this.polar2.CircleGradient.UseMiddle = true; this.polar2.CircleGradient.Visible = true; this.polar2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163))))); this.polar2.ColorEach = false; this.polar2.DataSource = this.polar1; this.polar2.Function = this.smoothing1; // // // // // // // // // this.polar2.Marks.Brush.Gradient.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.polar2.Marks.Brush.Gradient.MiddleColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.polar2.Marks.Brush.Gradient.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(215)))), ((int)(((byte)(0))))); this.polar2.Marks.Brush.Gradient.UseMiddle = true; // // // this.polar2.Marks.Callout.ArrowHead = Steema.TeeChart.Styles.ArrowHeadStyles.None; this.polar2.Marks.Callout.ArrowHeadSize = 8; // // // this.polar2.Marks.Callout.Brush.Color = System.Drawing.Color.Black; this.polar2.Marks.Callout.Distance = 0; this.polar2.Marks.Callout.Draw3D = false; this.polar2.Marks.Callout.Length = 10; this.polar2.Marks.Callout.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle; this.polar2.Marks.Callout.Visible = false; // // // this.polar2.Pen.Color = System.Drawing.Color.FromArgb(((int)(((byte)(68)))), ((int)(((byte)(102)))), ((int)(((byte)(163))))); this.polar2.Pen.Width = 2; // // // this.polar2.Pointer.HorizSize = 3; this.polar2.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Circle; this.polar2.Pointer.VertSize = 3; this.polar2.Title = "Smooth"; // // // this.polar2.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; // // smoothing1 // this.smoothing1.Period = 1; // // checkBox2 // this.checkBox2.Checked = true; this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked; this.checkBox2.Location = new System.Drawing.Point(16, 32); this.checkBox2.Name = "checkBox2"; this.checkBox2.Size = new System.Drawing.Size(136, 24); this.checkBox2.TabIndex = 1; this.checkBox2.Text = "Show &Smooth Polar"; this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged); // // groupBox1 // this.groupBox1.Controls.Add(this.checkBox3); this.groupBox1.Location = new System.Drawing.Point(168, 8); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(144, 48); this.groupBox1.TabIndex = 2; this.groupBox1.TabStop = false; this.groupBox1.Text = "Smoothing options"; // // checkBox3 // this.checkBox3.Checked = true; this.checkBox3.CheckState = System.Windows.Forms.CheckState.Checked; this.checkBox3.Location = new System.Drawing.Point(8, 16); this.checkBox3.Name = "checkBox3"; this.checkBox3.Size = new System.Drawing.Size(120, 24); this.checkBox3.TabIndex = 1; this.checkBox3.Text = "&Interpolate"; this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged); // // Polar_Smooth // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(440, 317); this.Name = "Polar_Smooth"; this.panel1.ResumeLayout(false); this.chartContainer.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }