WindLineChart.Designer.cs 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. namespace IntelligentControlForsx.MyControls.agc
  2. {
  3. partial class WindLineChart
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  30. System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  31. System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
  32. System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
  33. this.timer1 = new System.Windows.Forms.Timer(this.components);
  34. this.chartData = new System.Windows.Forms.DataVisualization.Charting.Chart();
  35. this.panel1 = new System.Windows.Forms.Panel();
  36. this.panel2 = new System.Windows.Forms.Panel();
  37. this.label1 = new System.Windows.Forms.Label();
  38. this.label2 = new System.Windows.Forms.Label();
  39. ((System.ComponentModel.ISupportInitialize)(this.chartData)).BeginInit();
  40. this.SuspendLayout();
  41. //
  42. // chartData
  43. //
  44. this.chartData.BackColor = System.Drawing.Color.Transparent;
  45. chartArea1.AxisX.LabelStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  46. chartArea1.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  47. chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.Transparent;
  48. chartArea1.AxisX2.LineColor = System.Drawing.Color.Empty;
  49. chartArea1.AxisY.LabelStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  50. chartArea1.AxisY.LineColor = System.Drawing.Color.Transparent;
  51. chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.Transparent;
  52. chartArea1.AxisY2.LabelStyle.ForeColor = System.Drawing.Color.SandyBrown;
  53. chartArea1.AxisY2.LineColor = System.Drawing.Color.Transparent;
  54. chartArea1.AxisY2.MajorGrid.LineColor = System.Drawing.Color.Transparent;
  55. chartArea1.BackColor = System.Drawing.Color.Transparent;
  56. chartArea1.BackImageTransparentColor = System.Drawing.Color.Transparent;
  57. chartArea1.BackSecondaryColor = System.Drawing.Color.Transparent;
  58. chartArea1.BorderColor = System.Drawing.Color.Transparent;
  59. chartArea1.Name = "ChartArea1";
  60. this.chartData.ChartAreas.Add(chartArea1);
  61. legend1.BackColor = System.Drawing.Color.Transparent;
  62. legend1.Enabled = false;
  63. legend1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  64. legend1.Name = "Legend1";
  65. legend1.TitleBackColor = System.Drawing.Color.Transparent;
  66. legend1.TitleFont = new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  67. this.chartData.Legends.Add(legend1);
  68. this.chartData.Location = new System.Drawing.Point(1, 4);
  69. this.chartData.Name = "chartData";
  70. series1.ChartArea = "ChartArea1";
  71. series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
  72. series1.Color = System.Drawing.Color.SandyBrown;
  73. series1.Legend = "Legend1";
  74. series1.Name = "Series1";
  75. series1.YAxisType = System.Windows.Forms.DataVisualization.Charting.AxisType.Secondary;
  76. series2.ChartArea = "ChartArea1";
  77. series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
  78. series2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  79. series2.Legend = "Legend1";
  80. series2.Name = "Series2";
  81. this.chartData.Series.Add(series1);
  82. this.chartData.Series.Add(series2);
  83. this.chartData.Size = new System.Drawing.Size(578, 152);
  84. this.chartData.TabIndex = 0;
  85. this.chartData.Text = "chart1";
  86. this.chartData.GetToolTipText += new System.EventHandler<System.Windows.Forms.DataVisualization.Charting.ToolTipEventArgs>(this.chartData_GetToolTipText);
  87. this.chartData.DoubleClick += new System.EventHandler(this.chartData_DoubleClick);
  88. //
  89. // panel1
  90. //
  91. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  92. this.panel1.Location = new System.Drawing.Point(107, 12);
  93. this.panel1.Name = "panel1";
  94. this.panel1.Size = new System.Drawing.Size(20, 1);
  95. this.panel1.TabIndex = 1;
  96. //
  97. // panel2
  98. //
  99. this.panel2.BackColor = System.Drawing.Color.SandyBrown;
  100. this.panel2.Location = new System.Drawing.Point(107, 28);
  101. this.panel2.Name = "panel2";
  102. this.panel2.Size = new System.Drawing.Size(20, 1);
  103. this.panel2.TabIndex = 1;
  104. //
  105. // label1
  106. //
  107. this.label1.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  108. this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  109. this.label1.Location = new System.Drawing.Point(57, 4);
  110. this.label1.Name = "label1";
  111. this.label1.Size = new System.Drawing.Size(50, 16);
  112. this.label1.TabIndex = 2;
  113. this.label1.Text = "有功设定";
  114. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  115. //
  116. // label2
  117. //
  118. this.label2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  119. this.label2.ForeColor = System.Drawing.Color.SandyBrown;
  120. this.label2.Location = new System.Drawing.Point(57, 20);
  121. this.label2.Name = "label2";
  122. this.label2.Size = new System.Drawing.Size(50, 16);
  123. this.label2.TabIndex = 2;
  124. this.label2.Text = "实发有功";
  125. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  126. //
  127. // WindLineChart
  128. //
  129. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  130. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  131. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(24)))), ((int)(((byte)(49)))));
  132. this.Controls.Add(this.label2);
  133. this.Controls.Add(this.label1);
  134. this.Controls.Add(this.panel2);
  135. this.Controls.Add(this.panel1);
  136. this.Controls.Add(this.chartData);
  137. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  138. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  139. this.Name = "WindLineChart";
  140. this.Size = new System.Drawing.Size(580, 160);
  141. this.Load += new System.EventHandler(this.LineChart_Load);
  142. ((System.ComponentModel.ISupportInitialize)(this.chartData)).EndInit();
  143. this.ResumeLayout(false);
  144. }
  145. #endregion
  146. private System.Windows.Forms.Timer timer1;
  147. private System.Windows.Forms.DataVisualization.Charting.Chart chartData;
  148. private System.Windows.Forms.Panel panel1;
  149. private System.Windows.Forms.Panel panel2;
  150. private System.Windows.Forms.Label label1;
  151. private System.Windows.Forms.Label label2;
  152. }
  153. }