Form2.Designer.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. namespace _01_1_Testy
  2. {
  3. partial class Form2
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  29. System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  30. System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
  31. this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
  32. ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // chart1
  36. //
  37. this.chart1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  38. | System.Windows.Forms.AnchorStyles.Left)
  39. | System.Windows.Forms.AnchorStyles.Right)));
  40. chartArea1.Name = "ChartArea1";
  41. this.chart1.ChartAreas.Add(chartArea1);
  42. legend1.Name = "Legend1";
  43. this.chart1.Legends.Add(legend1);
  44. this.chart1.Location = new System.Drawing.Point(-1, 3);
  45. this.chart1.Name = "chart1";
  46. series1.ChartArea = "ChartArea1";
  47. series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
  48. series1.Legend = "Legend1";
  49. series1.Name = "Series1";
  50. this.chart1.Series.Add(series1);
  51. this.chart1.Size = new System.Drawing.Size(689, 446);
  52. this.chart1.TabIndex = 0;
  53. this.chart1.Text = "chart1";
  54. //
  55. // Form2
  56. //
  57. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  58. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  59. this.ClientSize = new System.Drawing.Size(690, 447);
  60. this.Controls.Add(this.chart1);
  61. this.Name = "Form2";
  62. this.Text = "Form2";
  63. ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
  64. this.ResumeLayout(false);
  65. }
  66. #endregion
  67. public System.Windows.Forms.DataVisualization.Charting.Chart chart1;
  68. }
  69. }