namespace WindowsFormsApplication1 { partial class CandleChartTest { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend(); System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series(); System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series(); this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart(); this.button1 = new System.Windows.Forms.Button(); this.nDaysTextBox = new System.Windows.Forms.TextBox(); this.nDaysLabel = new System.Windows.Forms.Label(); this.cbShowLine = new System.Windows.Forms.CheckBox(); this.button2 = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit(); this.SuspendLayout(); // // chart1 // chartArea1.AxisX.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash; chartArea1.AxisY.MajorGrid.LineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash; chartArea1.BackColor = System.Drawing.Color.LightSteelBlue; chartArea1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom; chartArea1.BackSecondaryColor = System.Drawing.Color.White; chartArea1.BorderColor = System.Drawing.Color.LightGray; chartArea1.BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid; chartArea1.Name = "Price"; chartArea1.ShadowColor = System.Drawing.Color.Transparent; this.chart1.ChartAreas.Add(chartArea1); legend1.Enabled = false; legend1.Name = "Legend1"; this.chart1.Legends.Add(legend1); this.chart1.Location = new System.Drawing.Point(41, 35); this.chart1.Name = "chart1"; this.chart1.Palette = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.None; series1.BorderColor = System.Drawing.Color.Transparent; series1.BorderWidth = 2; series1.ChartArea = "Price"; series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Candlestick; series1.Color = System.Drawing.Color.Black; series1.CustomProperties = "PriceUpColor=0\\, 192\\, 0, PriceDownColor=Red"; series1.Legend = "Legend1"; series1.Name = "Price"; series1.YValuesPerPoint = 4; series2.BorderWidth = 2; series2.ChartArea = "Price"; series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line; series2.Color = System.Drawing.Color.Black; series2.Legend = "Legend1"; series2.Name = "Close"; this.chart1.Series.Add(series1); this.chart1.Series.Add(series2); this.chart1.Size = new System.Drawing.Size(671, 511); this.chart1.TabIndex = 0; this.chart1.Text = "chart1"; // // button1 // this.button1.Font = new System.Drawing.Font("Arial", 12.25F); this.button1.Location = new System.Drawing.Point(831, 423); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(125, 51); this.button1.TabIndex = 1; this.button1.Text = "Generate New Data"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // nDaysTextBox // this.nDaysTextBox.Font = new System.Drawing.Font("Arial", 12.25F); this.nDaysTextBox.Location = new System.Drawing.Point(921, 332); this.nDaysTextBox.Name = "nDaysTextBox"; this.nDaysTextBox.Size = new System.Drawing.Size(45, 26); this.nDaysTextBox.TabIndex = 2; // // nDaysLabel // this.nDaysLabel.AutoSize = true; this.nDaysLabel.Font = new System.Drawing.Font("Arial", 12.25F); this.nDaysLabel.Location = new System.Drawing.Point(784, 334); this.nDaysLabel.Name = "nDaysLabel"; this.nDaysLabel.Size = new System.Drawing.Size(133, 19); this.nDaysLabel.TabIndex = 3; this.nDaysLabel.Text = "Number of Days:"; this.nDaysLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // cbShowLine // this.cbShowLine.AutoSize = true; this.cbShowLine.Font = new System.Drawing.Font("Arial", 12.25F); this.cbShowLine.Location = new System.Drawing.Point(831, 255); this.cbShowLine.Name = "cbShowLine"; this.cbShowLine.Size = new System.Drawing.Size(128, 23); this.cbShowLine.TabIndex = 4; this.cbShowLine.Text = "Show line plot"; this.cbShowLine.UseVisualStyleBackColor = true; this.cbShowLine.CheckedChanged += new System.EventHandler(this.cbShowLine_CheckedChanged); // // button2 // this.button2.Location = new System.Drawing.Point(831, 529); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(125, 48); this.button2.TabIndex = 5; this.button2.Text = "Test Chart"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.button2_Click); // // CandleChartTest // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1016, 734); this.Controls.Add(this.button2); this.Controls.Add(this.cbShowLine); this.Controls.Add(this.nDaysLabel); this.Controls.Add(this.nDaysTextBox); this.Controls.Add(this.button1); this.Controls.Add(this.chart1); this.Name = "CandleChartTest"; this.Text = "CandleChartTest"; this.Load += new System.EventHandler(this.CandleChartTest_Load); ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.DataVisualization.Charting.Chart chart1; private System.Windows.Forms.Button button1; private System.Windows.Forms.TextBox nDaysTextBox; private System.Windows.Forms.Label nDaysLabel; private System.Windows.Forms.CheckBox cbShowLine; private System.Windows.Forms.Button button2; } }