CtrlDraw.Designer.cs 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. namespace DW5S.App.UserControl
  2. {
  3. partial class CtrlDraw
  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 Component 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. DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
  29. DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
  30. DevExpress.XtraCharts.PointSeriesView pointSeriesView1 = new DevExpress.XtraCharts.PointSeriesView();
  31. this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
  32. ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
  33. ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
  34. ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
  35. ((System.ComponentModel.ISupportInitialize)(pointSeriesView1)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // chartControl1
  39. //
  40. xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
  41. xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
  42. this.chartControl1.Diagram = xyDiagram1;
  43. this.chartControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  44. this.chartControl1.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Left;
  45. this.chartControl1.Legend.AlignmentVertical = DevExpress.XtraCharts.LegendAlignmentVertical.TopOutside;
  46. this.chartControl1.Legend.LegendID = -1;
  47. this.chartControl1.Legend.MarkerMode = DevExpress.XtraCharts.LegendMarkerMode.CheckBoxAndMarker;
  48. this.chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.True;
  49. this.chartControl1.Location = new System.Drawing.Point(0, 0);
  50. this.chartControl1.Name = "chartControl1";
  51. series1.Name = "Series 1";
  52. series1.SeriesID = 0;
  53. series1.View = pointSeriesView1;
  54. this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
  55. series1};
  56. this.chartControl1.Size = new System.Drawing.Size(1041, 434);
  57. this.chartControl1.TabIndex = 0;
  58. //
  59. // CtrlDraw
  60. //
  61. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  62. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  63. this.Controls.Add(this.chartControl1);
  64. this.Name = "CtrlDraw";
  65. this.Size = new System.Drawing.Size(1041, 434);
  66. this.Load += new System.EventHandler(this.CtrlDraw_Load);
  67. ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
  68. ((System.ComponentModel.ISupportInitialize)(pointSeriesView1)).EndInit();
  69. ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
  70. ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
  71. this.ResumeLayout(false);
  72. }
  73. #endregion
  74. private DevExpress.XtraCharts.ChartControl chartControl1;
  75. }
  76. }