namespace DataManager { partial class NavChart { /// /// 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.panel1 = new System.Windows.Forms.Panel(); this.cmbBenchmark = new System.Windows.Forms.ComboBox(); this.btnDateChanged = new System.Windows.Forms.Button(); this.cmbTimePeriod = new System.Windows.Forms.ComboBox(); this.dtpEndDate = new System.Windows.Forms.DateTimePicker(); this.label1 = new System.Windows.Forms.Label(); this.dtpStartDate = new System.Windows.Forms.DateTimePicker(); this.chtNav = new System.Windows.Forms.DataVisualization.Charting.Chart(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.chtNav)).BeginInit(); this.SuspendLayout(); // // panel1 // this.panel1.Controls.Add(this.cmbBenchmark); this.panel1.Controls.Add(this.btnDateChanged); this.panel1.Controls.Add(this.cmbTimePeriod); this.panel1.Controls.Add(this.dtpEndDate); this.panel1.Controls.Add(this.label1); this.panel1.Controls.Add(this.dtpStartDate); this.panel1.Dock = System.Windows.Forms.DockStyle.Top; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Margin = new System.Windows.Forms.Padding(4); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(820, 64); this.panel1.TabIndex = 0; // // cmbBenchmark // this.cmbBenchmark.FormattingEnabled = true; this.cmbBenchmark.Location = new System.Drawing.Point(613, 16); this.cmbBenchmark.Name = "cmbBenchmark"; this.cmbBenchmark.Size = new System.Drawing.Size(183, 25); this.cmbBenchmark.TabIndex = 5; this.cmbBenchmark.SelectedIndexChanged += new System.EventHandler(this.cmbBenchmark_SelectedIndexChanged); // // btnDateChanged // this.btnDateChanged.Location = new System.Drawing.Point(329, 16); this.btnDateChanged.Name = "btnDateChanged"; this.btnDateChanged.Size = new System.Drawing.Size(75, 25); this.btnDateChanged.TabIndex = 4; this.btnDateChanged.Text = "OK"; this.btnDateChanged.UseVisualStyleBackColor = true; this.btnDateChanged.Click += new System.EventHandler(this.btnDateChanged_Click); // // cmbTimePeriod // this.cmbTimePeriod.FormattingEnabled = true; this.cmbTimePeriod.Items.AddRange(new object[] { "成立以来", "近3月", "近1年", "近2年", "近3年", "近5年", "近10年"}); this.cmbTimePeriod.Location = new System.Drawing.Point(448, 16); this.cmbTimePeriod.Name = "cmbTimePeriod"; this.cmbTimePeriod.Size = new System.Drawing.Size(121, 25); this.cmbTimePeriod.TabIndex = 3; this.cmbTimePeriod.SelectedIndexChanged += new System.EventHandler(this.cmbTimePeriod_SelectedIndexChanged); // // dtpEndDate // this.dtpEndDate.Location = new System.Drawing.Point(182, 18); this.dtpEndDate.Margin = new System.Windows.Forms.Padding(4); this.dtpEndDate.Name = "dtpEndDate"; this.dtpEndDate.ShowCheckBox = true; this.dtpEndDate.Size = new System.Drawing.Size(140, 23); this.dtpEndDate.TabIndex = 2; this.dtpEndDate.Leave += new System.EventHandler(this.dtpEndDate_Leave); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(158, 21); this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(20, 17); this.label1.TabIndex = 1; this.label1.Text = "至"; // // dtpStartDate // this.dtpStartDate.Location = new System.Drawing.Point(15, 18); this.dtpStartDate.Margin = new System.Windows.Forms.Padding(4); this.dtpStartDate.Name = "dtpStartDate"; this.dtpStartDate.ShowCheckBox = true; this.dtpStartDate.Size = new System.Drawing.Size(140, 23); this.dtpStartDate.TabIndex = 0; // // chtNav // chartArea1.Name = "ChartArea1"; this.chtNav.ChartAreas.Add(chartArea1); this.chtNav.Dock = System.Windows.Forms.DockStyle.Fill; legend1.Docking = System.Windows.Forms.DataVisualization.Charting.Docking.Top; legend1.Name = "Legend1"; this.chtNav.Legends.Add(legend1); this.chtNav.Location = new System.Drawing.Point(0, 64); this.chtNav.Margin = new System.Windows.Forms.Padding(4); this.chtNav.Name = "chtNav"; series1.ChartArea = "ChartArea1"; series1.Legend = "Legend1"; series1.Name = "fund"; series2.ChartArea = "ChartArea1"; series2.Legend = "Legend1"; series2.Name = "index"; this.chtNav.Series.Add(series1); this.chtNav.Series.Add(series2); this.chtNav.Size = new System.Drawing.Size(820, 401); this.chtNav.TabIndex = 1; // // NavChart // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(820, 465); this.Controls.Add(this.chtNav); this.Controls.Add(this.panel1); this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.Margin = new System.Windows.Forms.Padding(4); this.Name = "NavChart"; this.Text = "净值曲线"; this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.chtNav)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Label label1; private System.Windows.Forms.DateTimePicker dtpStartDate; private System.Windows.Forms.DataVisualization.Charting.Chart chtNav; private System.Windows.Forms.DateTimePicker dtpEndDate; private System.Windows.Forms.ComboBox cmbTimePeriod; private System.Windows.Forms.Button btnDateChanged; private System.Windows.Forms.ComboBox cmbBenchmark; } }