duheng
8 天以前 4de480ec624d3b79ca690dc906e10cd2fbdc9be7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
namespace IStation.WinFrmUI.Curve 
{
    partial class ChartFeatCurveViewCtrl
    {
        /// <summary> 
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;
 
        /// <summary> 
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }
 
        #region Component Designer generated code
 
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            DevExpress.XtraCharts.TextAnnotation textAnnotation1 = new DevExpress.XtraCharts.TextAnnotation();
            DevExpress.XtraCharts.PaneAnchorPoint paneAnchorPoint1 = new DevExpress.XtraCharts.PaneAnchorPoint();
            DevExpress.XtraCharts.RelativePosition relativePosition1 = new DevExpress.XtraCharts.RelativePosition();
            DevExpress.XtraCharts.TextAnnotation textAnnotation2 = new DevExpress.XtraCharts.TextAnnotation();
            DevExpress.XtraCharts.PaneAnchorPoint paneAnchorPoint2 = new DevExpress.XtraCharts.PaneAnchorPoint();
            DevExpress.XtraCharts.RelativePosition relativePosition2 = new DevExpress.XtraCharts.RelativePosition();
            DevExpress.XtraCharts.TextAnnotation textAnnotation3 = new DevExpress.XtraCharts.TextAnnotation();
            DevExpress.XtraCharts.PaneAnchorPoint paneAnchorPoint3 = new DevExpress.XtraCharts.PaneAnchorPoint();
            DevExpress.XtraCharts.RelativePosition relativePosition3 = new DevExpress.XtraCharts.RelativePosition();
            DevExpress.XtraCharts.TextAnnotation textAnnotation4 = new DevExpress.XtraCharts.TextAnnotation();
            DevExpress.XtraCharts.ChartAnchorPoint chartAnchorPoint1 = new DevExpress.XtraCharts.ChartAnchorPoint();
            DevExpress.XtraCharts.FreePosition freePosition1 = new DevExpress.XtraCharts.FreePosition();
            DevExpress.XtraCharts.TextAnnotation textAnnotation5 = new DevExpress.XtraCharts.TextAnnotation();
            DevExpress.XtraCharts.PaneAnchorPoint paneAnchorPoint4 = new DevExpress.XtraCharts.PaneAnchorPoint();
            DevExpress.XtraCharts.RelativePosition relativePosition4 = new DevExpress.XtraCharts.RelativePosition();
            DevExpress.XtraCharts.TextAnnotation textAnnotation6 = new DevExpress.XtraCharts.TextAnnotation();
            DevExpress.XtraCharts.PaneAnchorPoint paneAnchorPoint5 = new DevExpress.XtraCharts.PaneAnchorPoint();
            DevExpress.XtraCharts.RelativePosition relativePosition5 = new DevExpress.XtraCharts.RelativePosition();
            DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
            DevExpress.XtraCharts.ConstantLine constantLine1 = new DevExpress.XtraCharts.ConstantLine();
            DevExpress.XtraCharts.ConstantLine constantLine2 = new DevExpress.XtraCharts.ConstantLine();
            DevExpress.XtraCharts.Strip strip1 = new DevExpress.XtraCharts.Strip();
            DevExpress.XtraCharts.XYDiagramPane xyDiagramPane1 = new DevExpress.XtraCharts.XYDiagramPane();
            DevExpress.XtraCharts.SecondaryAxisY secondaryAxisY1 = new DevExpress.XtraCharts.SecondaryAxisY();
            DevExpress.XtraCharts.SecondaryAxisY secondaryAxisY2 = new DevExpress.XtraCharts.SecondaryAxisY();
            DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.PointSeriesView pointSeriesView1 = new DevExpress.XtraCharts.PointSeriesView();
            DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.PointSeriesView pointSeriesView2 = new DevExpress.XtraCharts.PointSeriesView();
            DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel3 = new DevExpress.XtraCharts.PointSeriesLabel();
            DevExpress.XtraCharts.PointSeriesView pointSeriesView3 = new DevExpress.XtraCharts.PointSeriesView();
            DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SplineSeriesView splineSeriesView1 = new DevExpress.XtraCharts.SplineSeriesView();
            DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SplineSeriesView splineSeriesView2 = new DevExpress.XtraCharts.SplineSeriesView();
            DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.SplineSeriesView splineSeriesView3 = new DevExpress.XtraCharts.SplineSeriesView();
            DevExpress.XtraCharts.Series series7 = new DevExpress.XtraCharts.Series();
            DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
            DevExpress.XtraCharts.SplineSeriesView splineSeriesView4 = new DevExpress.XtraCharts.SplineSeriesView();
            DevExpress.XtraCharts.ChartTitle chartTitle1 = new DevExpress.XtraCharts.ChartTitle();
            this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
            this.chartRightMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.显示曲线方程Item = new System.Windows.Forms.ToolStripMenuItem();
            this.MenuItem导出曲线上的点12个点 = new System.Windows.Forms.ToolStripMenuItem();
            this.Menu导出图片 = new System.Windows.Forms.ToolStripMenuItem();
            this.保存曲线文件Item = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.DispCoodTextMenu = new System.Windows.Forms.ToolStripMenuItem();
            this.不显示曲线标签Item = new System.Windows.Forms.ToolStripMenuItem();
            this.不显示工况点Item = new System.Windows.Forms.ToolStripMenuItem();
            this.显示测试点参数MenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.不显示测试点Item = new System.Windows.Forms.ToolStripMenuItem();
            this.显示额定点MenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.定位最高效率点MenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.定位最高流量点MenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.单色显示MenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.延长曲线Item = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.设置坐标显示Menu = new System.Windows.Forms.ToolStripMenuItem();
            this.设置图形显示Item = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.设置运行区域Item = new System.Windows.Forms.ToolStripMenuItem();
            this.转化为压差曲线MenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.显示装置曲线MenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.设置装置曲线MenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.annoRightMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.修改Anno名称MenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.设置颜色AnnoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.axisRightMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.设置颜色AxisMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.设置坐标值MenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.seriesRightMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.设置颜色SeriesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.设置值SeriesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.删除此点SeriesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.编辑此点SeriesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.lineMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.设置颜色LineMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.设置值LineMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(strip1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagramPane1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(secondaryAxisY1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(secondaryAxisY2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(splineSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(splineSeriesView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(splineSeriesView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(series7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(splineSeriesView4)).BeginInit();
            this.chartRightMenu.SuspendLayout();
            this.annoRightMenu.SuspendLayout();
            this.axisRightMenu.SuspendLayout();
            this.seriesRightMenu.SuspendLayout();
            this.lineMenuStrip.SuspendLayout();
            this.SuspendLayout();
            // 
            // chartControl1
            //  
            paneAnchorPoint1.AxisXCoordinate.AxisValueSerializable = "1";
            paneAnchorPoint1.AxisYCoordinate.AxisValueSerializable = "0.2";
            textAnnotation1.AnchorPoint = paneAnchorPoint1;
            textAnnotation1.AutoHeight = true;
            textAnnotation1.AutoWidth = true;
            textAnnotation1.BackColor = System.Drawing.Color.Transparent;
            textAnnotation1.Border.Color = System.Drawing.Color.Magenta;
            textAnnotation1.ConnectorStyle = DevExpress.XtraCharts.AnnotationConnectorStyle.Line;
            textAnnotation1.DXFont = new DevExpress.Drawing.DXFont("宋体", 12F, DevExpress.Drawing.DXFontStyle.Italic);
            textAnnotation1.Name = "TextAnnotationQH";
            textAnnotation1.Padding.Bottom = 1;
            textAnnotation1.Padding.Left = 1;
            textAnnotation1.Padding.Right = 1;
            textAnnotation1.Padding.Top = 1;
            textAnnotation1.RuntimeAnchoring = true;
            textAnnotation1.RuntimeMoving = true;
            textAnnotation1.RuntimeResizing = true;
            textAnnotation1.RuntimeRotation = true;
            relativePosition1.Angle = -352.59308787150479D;
            relativePosition1.ConnectorLength = 50.420729863816923D;
            textAnnotation1.ShapePosition = relativePosition1;
            textAnnotation1.Text = "Q-H";
            textAnnotation1.TextColor = System.Drawing.Color.Magenta;
            paneAnchorPoint2.AxisXCoordinate.AxisValueSerializable = "1.2";
            paneAnchorPoint2.AxisYCoordinate.AxisName = "QEAxisY";
            paneAnchorPoint2.AxisYCoordinate.AxisValueSerializable = "0.5";
            textAnnotation2.AnchorPoint = paneAnchorPoint2;
            textAnnotation2.AutoHeight = true;
            textAnnotation2.AutoWidth = true;
            textAnnotation2.BackColor = System.Drawing.Color.Transparent;
            textAnnotation2.ConnectorStyle = DevExpress.XtraCharts.AnnotationConnectorStyle.Line;
            textAnnotation2.DXFont = new DevExpress.Drawing.DXFont("宋体", 12F, DevExpress.Drawing.DXFontStyle.Italic);
            textAnnotation2.Name = "TextAnnotationQE";
            textAnnotation2.Padding.Bottom = 1;
            textAnnotation2.Padding.Left = 1;
            textAnnotation2.Padding.Right = 1;
            textAnnotation2.Padding.Top = 1;
            textAnnotation2.RuntimeAnchoring = true;
            textAnnotation2.RuntimeMoving = true;
            textAnnotation2.RuntimeResizing = true;
            textAnnotation2.RuntimeRotation = true;
            relativePosition2.ConnectorLength = 35D;
            textAnnotation2.ShapePosition = relativePosition2;
            textAnnotation2.Text = "Q-E";
            paneAnchorPoint3.AxisXCoordinate.AxisValueSerializable = "1.3";
            paneAnchorPoint3.AxisYCoordinate.AxisName = "QPAxisY";
            paneAnchorPoint3.AxisYCoordinate.AxisValueSerializable = "0.8";
            textAnnotation3.AnchorPoint = paneAnchorPoint3;
            textAnnotation3.AutoHeight = true;
            textAnnotation3.AutoWidth = true;
            textAnnotation3.BackColor = System.Drawing.Color.Transparent;
            textAnnotation3.ConnectorStyle = DevExpress.XtraCharts.AnnotationConnectorStyle.Line;
            textAnnotation3.DXFont = new DevExpress.Drawing.DXFont("宋体", 12F, DevExpress.Drawing.DXFontStyle.Italic);
            textAnnotation3.Name = "TextAnnotationQP";
            textAnnotation3.Padding.Bottom = 1;
            textAnnotation3.Padding.Left = 1;
            textAnnotation3.Padding.Right = 1;
            textAnnotation3.Padding.Top = 1;
            textAnnotation3.RuntimeAnchoring = true;
            textAnnotation3.RuntimeMoving = true;
            textAnnotation3.RuntimeResizing = true;
            textAnnotation3.RuntimeRotation = true;
            relativePosition3.ConnectorLength = 35D;
            textAnnotation3.ShapePosition = relativePosition3;
            textAnnotation3.Text = "Q-P";
            chartAnchorPoint1.X = 6;
            chartAnchorPoint1.Y = 96;
            textAnnotation4.AnchorPoint = chartAnchorPoint1;
            textAnnotation4.AutoHeight = true;
            textAnnotation4.AutoWidth = true;
            textAnnotation4.Border.Visibility = DevExpress.Utils.DefaultBoolean.False;
            textAnnotation4.ConnectorStyle = DevExpress.XtraCharts.AnnotationConnectorStyle.None;
            textAnnotation4.Name = "TextAnnoWorkPoint";
            textAnnotation4.Padding.Bottom = 1;
            textAnnotation4.Padding.Left = 1;
            textAnnotation4.Padding.Right = 1;
            textAnnotation4.Padding.Top = 1;
            textAnnotation4.RuntimeAnchoring = true;
            textAnnotation4.RuntimeMoving = true;
            textAnnotation4.RuntimeResizing = true;
            textAnnotation4.RuntimeRotation = true;
            textAnnotation4.ShapeKind = DevExpress.XtraCharts.ShapeKind.Rectangle;
            freePosition1.DockCorner = DevExpress.XtraCharts.DockCorner.RightBottom;
            freePosition1.DockTargetName = "Default Pane";
            freePosition1.InnerIndents.Left = 0;
            freePosition1.InnerIndents.Top = 0;
            freePosition1.OuterIndents.Left = 2;
            freePosition1.OuterIndents.Top = 2;
            textAnnotation4.ShapePosition = freePosition1;
            textAnnotation4.TextAlignment = System.Drawing.StringAlignment.Near;
            paneAnchorPoint4.AxisXCoordinate.AxisValueSerializable = "1.8";
            paneAnchorPoint4.AxisYCoordinate.AxisValueSerializable = "1.5";
            textAnnotation5.AnchorPoint = paneAnchorPoint4;
            textAnnotation5.AutoHeight = true;
            textAnnotation5.AutoWidth = true;
            textAnnotation5.BackColor = System.Drawing.Color.Transparent;
            textAnnotation5.Border.Color = System.Drawing.Color.Magenta;
            textAnnotation5.ConnectorStyle = DevExpress.XtraCharts.AnnotationConnectorStyle.Line;
            textAnnotation5.DXFont = new DevExpress.Drawing.DXFont("Tahoma", 8.25F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] {
            new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))});
            textAnnotation5.Name = "TextAnnotationEquip";
            textAnnotation5.Padding.Bottom = 1;
            textAnnotation5.Padding.Left = 1;
            textAnnotation5.Padding.Right = 1;
            textAnnotation5.Padding.Top = 1;
            textAnnotation5.RuntimeAnchoring = true;
            textAnnotation5.RuntimeMoving = true;
            textAnnotation5.RuntimeResizing = true;
            textAnnotation5.RuntimeRotation = true;
            relativePosition4.ConnectorLength = 35D;
            textAnnotation5.ShapePosition = relativePosition4;
            textAnnotation5.Text = "装置曲线";
            textAnnotation5.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            paneAnchorPoint5.AxisXCoordinate.AxisValueSerializable = "2";
            paneAnchorPoint5.AxisYCoordinate.AxisName = "QEAxisY";
            paneAnchorPoint5.AxisYCoordinate.AxisValueSerializable = "2";
            textAnnotation6.AnchorPoint = paneAnchorPoint5;
            textAnnotation6.AutoHeight = true;
            textAnnotation6.AutoWidth = true;
            textAnnotation6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(219)))), ((int)(((byte)(238)))), ((int)(((byte)(227)))));
            textAnnotation6.Border.Visibility = DevExpress.Utils.DefaultBoolean.False;
            textAnnotation6.DXFont = new DevExpress.Drawing.DXFont("Tahoma", 8.25F);
            textAnnotation6.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Solid;
            textAnnotation6.Name = "TextAnnotationMaxE";
            textAnnotation6.Padding.Bottom = 1;
            textAnnotation6.Padding.Left = 1;
            textAnnotation6.Padding.Right = 1;
            textAnnotation6.Padding.Top = 1;
            textAnnotation6.RuntimeMoving = true;
            textAnnotation6.RuntimeResizing = true;
            textAnnotation6.RuntimeRotation = true;
            textAnnotation6.Shadow.Visible = true;
            relativePosition5.ConnectorLength = 50D;
            textAnnotation6.ShapePosition = relativePosition5;
            textAnnotation6.Text = "高效点";
            textAnnotation6.TextColor = System.Drawing.Color.Green;
            this.chartControl1.AnnotationRepository.AddRange(new DevExpress.XtraCharts.Annotation[] {
            textAnnotation1,
            textAnnotation2,
            textAnnotation3,
            textAnnotation4,
            textAnnotation5,
            textAnnotation6});
            this.chartControl1.AppearanceNameSerializable = "Chameleon";
            this.chartControl1.CrosshairOptions.ArgumentLineColor = System.Drawing.Color.Black;
            constantLine1.AxisValueSerializable = "1.4";
            constantLine1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            constantLine1.LegendText = "额定点";
            constantLine1.LineStyle.DashStyle = DevExpress.XtraCharts.DashStyle.Dash;
            constantLine1.Name = "RatedParasLine";
            constantLine1.ShowInLegend = false;
            constantLine1.Title.Text = "额定点";
            constantLine1.Title.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            constantLine2.AxisValueSerializable = "1";
            constantLine2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
            constantLine2.LineStyle.DashStyle = DevExpress.XtraCharts.DashStyle.DashDotDot;
            constantLine2.Name = "WorkParasLine";
            constantLine2.Title.Text = "工作点";
            constantLine2.Title.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
            xyDiagram1.AxisX.ConstantLines.AddRange(new DevExpress.XtraCharts.ConstantLine[] {
            constantLine1,
            constantLine2});
            xyDiagram1.AxisX.GridLines.Visible = true;
            xyDiagram1.AxisX.Label.TextPattern = "{A:N0}";
            xyDiagram1.AxisX.ScaleBreakOptions.Style = DevExpress.XtraCharts.ScaleBreakStyle.Straight;
            strip1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
            strip1.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Solid;
            strip1.MaxLimit.AxisValueSerializable = "2";
            strip1.MinLimit.AxisValueSerializable = "0";
            strip1.Name = "WorkRegion";
            strip1.ShowInLegend = false;
            xyDiagram1.AxisX.Strips.AddRange(new DevExpress.XtraCharts.Strip[] {
            strip1});
            xyDiagram1.AxisX.Title.DXFont = new DevExpress.Drawing.DXFont("Tahoma", 9F);
            xyDiagram1.AxisX.Title.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram1.AxisX.Title.Text = "流量 (m³/h)";
            xyDiagram1.AxisX.Title.Visibility = DevExpress.Utils.DefaultBoolean.True;
            xyDiagram1.AxisX.VisibleInPanesSerializable = "-1;0";
            xyDiagram1.AxisX.VisualRange.Auto = false;
            xyDiagram1.AxisX.VisualRange.AutoSideMargins = false;
            xyDiagram1.AxisX.VisualRange.EndSideMargin = 0D;
            xyDiagram1.AxisX.VisualRange.MaxValueSerializable = "4";
            xyDiagram1.AxisX.VisualRange.MinValueSerializable = "0";
            xyDiagram1.AxisX.VisualRange.StartSideMargin = 0D;
            xyDiagram1.AxisX.WholeRange.Auto = false;
            xyDiagram1.AxisX.WholeRange.AutoSideMargins = false;
            xyDiagram1.AxisX.WholeRange.EndSideMargin = 0D;
            xyDiagram1.AxisX.WholeRange.MaxValueSerializable = "4";
            xyDiagram1.AxisX.WholeRange.MinValueSerializable = "0";
            xyDiagram1.AxisX.WholeRange.StartSideMargin = 0D;
            xyDiagram1.AxisY.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
            xyDiagram1.AxisY.Label.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
            xyDiagram1.AxisY.MinorCount = 4;
            xyDiagram1.AxisY.Title.DXFont = new DevExpress.Drawing.DXFont("Tahoma", 9F);
            xyDiagram1.AxisY.Title.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
            xyDiagram1.AxisY.Title.Text = "扬程/m";
            xyDiagram1.AxisY.Title.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
            xyDiagram1.AxisY.Title.Visibility = DevExpress.Utils.DefaultBoolean.True;
            xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
            xyDiagram1.AxisY.VisualRange.Auto = false;
            xyDiagram1.AxisY.VisualRange.AutoSideMargins = false;
            xyDiagram1.AxisY.VisualRange.EndSideMargin = 0D;
            xyDiagram1.AxisY.VisualRange.MaxValueSerializable = "1";
            xyDiagram1.AxisY.VisualRange.MinValueSerializable = "0";
            xyDiagram1.AxisY.VisualRange.StartSideMargin = 0D;
            xyDiagram1.AxisY.WholeRange.AutoSideMargins = false;
            xyDiagram1.AxisY.WholeRange.EndSideMargin = 0D;
            xyDiagram1.AxisY.WholeRange.StartSideMargin = 0D;
            xyDiagram1.DefaultPane.BackColor = System.Drawing.Color.White;
            xyDiagram1.Margins.Bottom = 1;
            xyDiagram1.Margins.Left = 1;
            xyDiagram1.Margins.Right = 1;
            xyDiagram1.Margins.Top = 1;
            xyDiagram1.PaneDistance = 1;
            xyDiagramPane1.BackColor = System.Drawing.Color.White;
            xyDiagramPane1.Name = "功率";
            xyDiagramPane1.PaneID = 0;
            xyDiagramPane1.Title.Alignment = System.Drawing.StringAlignment.Far;
            xyDiagramPane1.Title.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(84)))), ((int)(((byte)(141)))), ((int)(((byte)(212)))));
            xyDiagramPane1.Title.Visibility = DevExpress.Utils.DefaultBoolean.Default;
            xyDiagram1.Panes.AddRange(new DevExpress.XtraCharts.XYDiagramPane[] {
            xyDiagramPane1});
            xyDiagram1.RuntimePaneResize = true;
            secondaryAxisY1.AxisID = 0;
            secondaryAxisY1.Color = System.Drawing.Color.Peru;
            secondaryAxisY1.Label.TextColor = System.Drawing.Color.Peru;
            secondaryAxisY1.MinorCount = 4;
            secondaryAxisY1.Name = "QEAxisY";
            secondaryAxisY1.Title.DXFont = new DevExpress.Drawing.DXFont("Tahoma", 9F);
            secondaryAxisY1.Title.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
            secondaryAxisY1.Title.Text = "效率/%";
            secondaryAxisY1.Title.TextColor = System.Drawing.Color.Peru;
            secondaryAxisY1.Title.Visibility = DevExpress.Utils.DefaultBoolean.True;
            secondaryAxisY1.VisibleInPanesSerializable = "-1";
            secondaryAxisY2.AxisID = 1;
            secondaryAxisY2.Color = System.Drawing.SystemColors.HotTrack;
            secondaryAxisY2.Label.TextColor = System.Drawing.SystemColors.HotTrack;
            secondaryAxisY2.MinorCount = 4;
            secondaryAxisY2.Name = "QPAxisY";
            secondaryAxisY2.Title.DXFont = new DevExpress.Drawing.DXFont("Tahoma", 9F);
            secondaryAxisY2.Title.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
            secondaryAxisY2.Title.Text = "功率/kW";
            secondaryAxisY2.Title.TextColor = System.Drawing.SystemColors.HotTrack;
            secondaryAxisY2.Title.Visibility = DevExpress.Utils.DefaultBoolean.True;
            secondaryAxisY2.VisibleInPanesSerializable = "0";
            xyDiagram1.SecondaryAxesY.AddRange(new DevExpress.XtraCharts.SecondaryAxisY[] {
            secondaryAxisY1,
            secondaryAxisY2});
            this.chartControl1.Diagram = xyDiagram1;
            this.chartControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.chartControl1.IndicatorsPaletteName = "Apex";
            this.chartControl1.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.LeftOutside;
            this.chartControl1.Legend.Name = "Default Legend";
            this.chartControl1.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
            this.chartControl1.Location = new System.Drawing.Point(0, 0);
            this.chartControl1.Margin = new System.Windows.Forms.Padding(0);
            this.chartControl1.Name = "chartControl1";
            this.chartControl1.Padding.Bottom = 0;
            this.chartControl1.Padding.Left = 0;
            this.chartControl1.Padding.Right = 0;
            this.chartControl1.Padding.Top = 0;
            series1.ArgumentDataMember = "Q";
            series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
            series1.CrosshairEnabled = DevExpress.Utils.DefaultBoolean.True;
            series1.CrosshairHighlightPoints = DevExpress.Utils.DefaultBoolean.True;
            series1.CrosshairLabelVisibility = DevExpress.Utils.DefaultBoolean.True;
            pointSeriesLabel1.TextPattern = "(流量{A},扬程{V})";
            series1.Label = pointSeriesLabel1;
            series1.LegendTextPattern = "(流量{A},扬程{V})";
            series1.Name = "SeriesQHpoint";
            series1.ShowInLegend = false;
            series1.ValueDataMembersSerializable = "H";
            pointSeriesView1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
            pointSeriesView1.PointMarkerOptions.BorderVisible = false;
            pointSeriesView1.PointMarkerOptions.Size = 7;
            series1.View = pointSeriesView1;
            series2.ArgumentDataMember = "Q";
            series2.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
            series2.CrosshairEnabled = DevExpress.Utils.DefaultBoolean.True;
            series2.CrosshairHighlightPoints = DevExpress.Utils.DefaultBoolean.True;
            series2.CrosshairLabelVisibility = DevExpress.Utils.DefaultBoolean.True;
            pointSeriesLabel2.TextPattern = "(流量{A},效率{V})";
            series2.Label = pointSeriesLabel2;
            series2.LabelsVisibility = DevExpress.Utils.DefaultBoolean.False;
            series2.LegendTextPattern = "(流量{A},效率{V})";
            series2.Name = "SeriesQEpoint";
            series2.ShowInLegend = false;
            series2.ValueDataMembersSerializable = "E";
            pointSeriesView2.AxisYName = "QEAxisY";
            pointSeriesView2.Color = System.Drawing.Color.Peru;
            pointSeriesView2.PointMarkerOptions.Size = 6;
            series2.View = pointSeriesView2;
            series3.ArgumentDataMember = "Q";
            series3.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
            pointSeriesLabel3.TextPattern = "(流量{A},功率{V})";
            series3.Label = pointSeriesLabel3;
            series3.LabelsVisibility = DevExpress.Utils.DefaultBoolean.False;
            series3.LegendTextPattern = "(流量{A},功率{V})";
            series3.Name = "SeriesQPpoint";
            series3.ShowInLegend = false;
            series3.ValueDataMembersSerializable = "P";
            pointSeriesView3.AxisYName = "QPAxisY";
            pointSeriesView3.Color = System.Drawing.SystemColors.HotTrack;
            pointSeriesView3.PaneName = "功率";
            pointSeriesView3.PointMarkerOptions.Size = 7;
            series3.View = pointSeriesView3;
            series4.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
            series4.LabelsVisibility = DevExpress.Utils.DefaultBoolean.False;
            series4.Name = "SeriesQHcurve";
            series4.ShowInLegend = false;
            series4.ToolTipEnabled = DevExpress.Utils.DefaultBoolean.True;
            series4.ToolTipPointPattern = "流量扬程曲线";
            series4.ToolTipSeriesPattern = "流量扬程曲线";
            splineSeriesView1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
            series4.View = splineSeriesView1;
            series5.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
            series5.Name = "SeriesQEcurve";
            series5.ShowInLegend = false;
            splineSeriesView2.AxisYName = "QEAxisY";
            splineSeriesView2.Color = System.Drawing.Color.Peru;
            series5.View = splineSeriesView2;
            series6.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
            series6.LabelsVisibility = DevExpress.Utils.DefaultBoolean.False;
            series6.Name = "SeriesQPcurve";
            series6.ShowInLegend = false;
            splineSeriesView3.AxisYName = "QPAxisY";
            splineSeriesView3.Color = System.Drawing.SystemColors.HotTrack;
            splineSeriesView3.PaneName = "功率";
            series6.View = splineSeriesView3;
            series7.CheckableInLegend = false;
            series7.CheckedInLegend = false;
            series7.Name = "SeriesQHline";
            lineSeriesView1.Color = System.Drawing.Color.Blue;
            lineSeriesView1.LineStyle.DashStyle = DevExpress.XtraCharts.DashStyle.DashDotDot;
            lineSeriesView1.LineStyle.Thickness = 1;
            lineSeriesView1.MarkerVisibility = DevExpress.Utils.DefaultBoolean.False;
            series7.View = lineSeriesView1;
            this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
        series1,
        series2,
        series3,
        series4,
        series5,
        series6,
        series7};
            this.chartControl1.SeriesTemplate.View = splineSeriesView4;
            this.chartControl1.Size = new System.Drawing.Size(616, 577);
            this.chartControl1.SmallChartText.Text = "";
            this.chartControl1.TabIndex = 0;
            chartTitle1.Dock = DevExpress.XtraCharts.ChartTitleDockStyle.Bottom;
            chartTitle1.Visibility = DevExpress.Utils.DefaultBoolean.False;
            this.chartControl1.Titles.AddRange(new DevExpress.XtraCharts.ChartTitle[] {
            chartTitle1});
            // 
            // chartRightMenu
            // 
            this.chartRightMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.显示曲线方程Item,
            this.MenuItem导出曲线上的点12个点,
            this.Menu导出图片,
            this.保存曲线文件Item,
            this.toolStripSeparator1,
            this.DispCoodTextMenu,
            this.不显示曲线标签Item,
            this.不显示工况点Item,
            this.显示测试点参数MenuItem,
            this.不显示测试点Item,
            this.显示额定点MenuItem,
            this.定位最高效率点MenuItem,
            this.定位最高流量点MenuItem,
            this.toolStripSeparator4,
            this.单色显示MenuItem,
            this.延长曲线Item,
            this.toolStripSeparator2,
            this.设置坐标显示Menu,
            this.设置图形显示Item,
            this.toolStripSeparator3,
            this.设置运行区域Item,
            this.转化为压差曲线MenuItem,
            this.toolStripSeparator5,
            this.显示装置曲线MenuItem,
            this.设置装置曲线MenuItem});
            this.chartRightMenu.Name = "chartRightMenu";
            this.chartRightMenu.Size = new System.Drawing.Size(207, 474);
            this.chartRightMenu.Opening += new System.ComponentModel.CancelEventHandler(this.chartRightMenu_Opening);
            // 
            // 显示曲线方程Item
            // 
            this.显示曲线方程Item.Name = "显示曲线方程Item";
            this.显示曲线方程Item.Size = new System.Drawing.Size(206, 22);
            this.显示曲线方程Item.Text = "显示曲线方程";
            this.显示曲线方程Item.Click += new System.EventHandler(this.显示曲线方程Item_Click);
            // 
            // MenuItem导出曲线上的点12个点
            // 
            this.MenuItem导出曲线上的点12个点.Name = "MenuItem导出曲线上的点12个点";
            this.MenuItem导出曲线上的点12个点.Size = new System.Drawing.Size(206, 22);
            this.MenuItem导出曲线上的点12个点.Text = "导出曲线上的点(12个点)";
            this.MenuItem导出曲线上的点12个点.Click += new System.EventHandler(this.MenuItem导出曲线上的点12个点_Click);
            // 
            // Menu导出图片
            // 
            this.Menu导出图片.Name = "Menu导出图片";
            this.Menu导出图片.Size = new System.Drawing.Size(206, 22);
            this.Menu导出图片.Text = "导出成图片";
            this.Menu导出图片.Click += new System.EventHandler(this.导出图片Item_Click);
            // 
            // 保存曲线文件Item
            // 
            this.保存曲线文件Item.Name = "保存曲线文件Item";
            this.保存曲线文件Item.Size = new System.Drawing.Size(206, 22);
            this.保存曲线文件Item.Text = "保存曲线文件";
            this.保存曲线文件Item.Click += new System.EventHandler(this.保存曲线文件Item_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(203, 6);
            // 
            // DispCoodTextMenu
            // 
            this.DispCoodTextMenu.Name = "DispCoodTextMenu";
            this.DispCoodTextMenu.Size = new System.Drawing.Size(206, 22);
            this.DispCoodTextMenu.Text = "不显示坐标说明";
            this.DispCoodTextMenu.Click += new System.EventHandler(this.DispCoodTextMenu_Click);
            // 
            // 不显示曲线标签Item
            // 
            this.不显示曲线标签Item.Name = "不显示曲线标签Item";
            this.不显示曲线标签Item.Size = new System.Drawing.Size(206, 22);
            this.不显示曲线标签Item.Text = "不显示曲线名称";
            this.不显示曲线标签Item.Click += new System.EventHandler(this.不显示曲线标签Item_Click);
            // 
            // 不显示工况点Item
            // 
            this.不显示工况点Item.Name = "不显示工况点Item";
            this.不显示工况点Item.Size = new System.Drawing.Size(206, 22);
            this.不显示工况点Item.Text = "不显示工况点";
            this.不显示工况点Item.Click += new System.EventHandler(this.不显示工况点Item_Click);
            // 
            // 显示测试点参数MenuItem
            // 
            this.显示测试点参数MenuItem.Name = "显示测试点参数MenuItem";
            this.显示测试点参数MenuItem.Size = new System.Drawing.Size(206, 22);
            this.显示测试点参数MenuItem.Text = "显示测试点参数";
            this.显示测试点参数MenuItem.Click += new System.EventHandler(this.显示测试点参数MenuItem_Click);
            // 
            // 不显示测试点Item
            // 
            this.不显示测试点Item.Name = "不显示测试点Item";
            this.不显示测试点Item.Size = new System.Drawing.Size(206, 22);
            this.不显示测试点Item.Text = "不显示测试点";
            this.不显示测试点Item.Click += new System.EventHandler(this.不显示测试点Item_Click);
            // 
            // 显示额定点MenuItem
            // 
            this.显示额定点MenuItem.Name = "显示额定点MenuItem";
            this.显示额定点MenuItem.Size = new System.Drawing.Size(206, 22);
            this.显示额定点MenuItem.Text = "不显示额定点";
            this.显示额定点MenuItem.Click += new System.EventHandler(this.显示额定点MenuItem_Click);
            // 
            // 定位最高效率点MenuItem
            // 
            this.定位最高效率点MenuItem.Name = "定位最高效率点MenuItem";
            this.定位最高效率点MenuItem.Size = new System.Drawing.Size(206, 22);
            this.定位最高效率点MenuItem.Text = "定位最高效率点";
            this.定位最高效率点MenuItem.Click += new System.EventHandler(this.定位最高效率点MenuItem_Click);
            // 
            // 定位最高流量点MenuItem
            // 
            this.定位最高流量点MenuItem.Name = "定位最高流量点MenuItem";
            this.定位最高流量点MenuItem.Size = new System.Drawing.Size(206, 22);
            this.定位最高流量点MenuItem.Text = "定位最高流量点";
            this.定位最高流量点MenuItem.Click += new System.EventHandler(this.定位最高流量点MenuItem_Click);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(203, 6);
            // 
            // 单色显示MenuItem
            // 
            this.单色显示MenuItem.Name = "单色显示MenuItem";
            this.单色显示MenuItem.Size = new System.Drawing.Size(206, 22);
            this.单色显示MenuItem.Text = "单色显示";
            this.单色显示MenuItem.Click += new System.EventHandler(this.单色显示MenuItem_Click);
            // 
            // 延长曲线Item
            // 
            this.延长曲线Item.Name = "延长曲线Item";
            this.延长曲线Item.Size = new System.Drawing.Size(206, 22);
            this.延长曲线Item.Text = "延长曲线";
            this.延长曲线Item.Click += new System.EventHandler(this.延长曲线Item_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(203, 6);
            // 
            // 设置坐标显示Menu
            // 
            this.设置坐标显示Menu.Name = "设置坐标显示Menu";
            this.设置坐标显示Menu.Size = new System.Drawing.Size(206, 22);
            this.设置坐标显示Menu.Text = "设置坐标系";
            this.设置坐标显示Menu.Click += new System.EventHandler(this.设置坐标Menu_Click);
            // 
            // 设置图形显示Item
            // 
            this.设置图形显示Item.Name = "设置图形显示Item";
            this.设置图形显示Item.Size = new System.Drawing.Size(206, 22);
            this.设置图形显示Item.Text = "设置图形显示";
            this.设置图形显示Item.Click += new System.EventHandler(this.设置图形显示Item_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(203, 6);
            // 
            // 设置运行区域Item
            // 
            this.设置运行区域Item.Name = "设置运行区域Item";
            this.设置运行区域Item.Size = new System.Drawing.Size(206, 22);
            this.设置运行区域Item.Text = "设置运行区域";
            this.设置运行区域Item.Click += new System.EventHandler(this.设置运行区域Item_Click);
            // 
            // 转化为压差曲线MenuItem
            // 
            this.转化为压差曲线MenuItem.Name = "转化为压差曲线MenuItem";
            this.转化为压差曲线MenuItem.Size = new System.Drawing.Size(206, 22);
            this.转化为压差曲线MenuItem.Text = "转化为压差曲线";
            this.转化为压差曲线MenuItem.Click += new System.EventHandler(this.转化为压差曲线MenuItem_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(203, 6);
            // 
            // 显示装置曲线MenuItem
            // 
            this.显示装置曲线MenuItem.Name = "显示装置曲线MenuItem";
            this.显示装置曲线MenuItem.Size = new System.Drawing.Size(206, 22);
            this.显示装置曲线MenuItem.Text = "显示装置曲线";
            this.显示装置曲线MenuItem.Click += new System.EventHandler(this.显示装置曲线MenuItem_Click);
            // 
            // 设置装置曲线MenuItem
            // 
            this.设置装置曲线MenuItem.Name = "设置装置曲线MenuItem";
            this.设置装置曲线MenuItem.Size = new System.Drawing.Size(206, 22);
            this.设置装置曲线MenuItem.Text = "设置装置曲线";
            this.设置装置曲线MenuItem.Visible = false;
            this.设置装置曲线MenuItem.Click += new System.EventHandler(this.设置装置曲线MenuItem_Click);
            // 
            // annoRightMenu
            // 
            this.annoRightMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.修改Anno名称MenuItem,
            this.设置颜色AnnoMenuItem});
            this.annoRightMenu.Name = "annoRightMenu";
            this.annoRightMenu.Size = new System.Drawing.Size(125, 48);
            // 
            // 修改Anno名称MenuItem
            // 
            this.修改Anno名称MenuItem.Name = "修改Anno名称MenuItem";
            this.修改Anno名称MenuItem.Size = new System.Drawing.Size(124, 22);
            this.修改Anno名称MenuItem.Text = "修改名称";
            this.修改Anno名称MenuItem.Click += new System.EventHandler(this.修改Anno名称MenuItem_Click);
            // 
            // 设置颜色AnnoMenuItem
            // 
            this.设置颜色AnnoMenuItem.Name = "设置颜色AnnoMenuItem";
            this.设置颜色AnnoMenuItem.Size = new System.Drawing.Size(124, 22);
            this.设置颜色AnnoMenuItem.Text = "设置颜色";
            this.设置颜色AnnoMenuItem.Click += new System.EventHandler(this.设置颜色AnnoMenuItem_Click);
            // 
            // axisRightMenu
            // 
            this.axisRightMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.设置颜色AxisMenuItem,
            this.设置坐标值MenuItem});
            this.axisRightMenu.Name = "annoRightMenu";
            this.axisRightMenu.Size = new System.Drawing.Size(137, 48);
            // 
            // 设置颜色AxisMenuItem
            // 
            this.设置颜色AxisMenuItem.Name = "设置颜色AxisMenuItem";
            this.设置颜色AxisMenuItem.Size = new System.Drawing.Size(136, 22);
            this.设置颜色AxisMenuItem.Text = "设置颜色";
            this.设置颜色AxisMenuItem.Click += new System.EventHandler(this.设置颜色AxisMenuItem_Click);
            // 
            // 设置坐标值MenuItem
            // 
            this.设置坐标值MenuItem.Name = "设置坐标值MenuItem";
            this.设置坐标值MenuItem.Size = new System.Drawing.Size(136, 22);
            this.设置坐标值MenuItem.Text = "设置坐标值";
            this.设置坐标值MenuItem.Click += new System.EventHandler(this.设置坐标值MenuItem_Click);
            // 
            // seriesRightMenu
            // 
            this.seriesRightMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.设置颜色SeriesMenuItem,
            this.设置值SeriesMenuItem,
            this.删除此点SeriesMenuItem,
            this.编辑此点SeriesMenuItem});
            this.seriesRightMenu.Name = "annoRightMenu";
            this.seriesRightMenu.Size = new System.Drawing.Size(125, 92);
            // 
            // 设置颜色SeriesMenuItem
            // 
            this.设置颜色SeriesMenuItem.Name = "设置颜色SeriesMenuItem";
            this.设置颜色SeriesMenuItem.Size = new System.Drawing.Size(124, 22);
            this.设置颜色SeriesMenuItem.Text = "设置颜色";
            this.设置颜色SeriesMenuItem.Click += new System.EventHandler(this.设置颜色SeriesMenuItem_Click);
            // 
            // 设置值SeriesMenuItem
            // 
            this.设置值SeriesMenuItem.Name = "设置值SeriesMenuItem";
            this.设置值SeriesMenuItem.Size = new System.Drawing.Size(124, 22);
            this.设置值SeriesMenuItem.Text = "设置值";
            this.设置值SeriesMenuItem.Click += new System.EventHandler(this.设置值SeriesMenuItem_Click);
            // 
            // 删除此点SeriesMenuItem
            // 
            this.删除此点SeriesMenuItem.Name = "删除此点SeriesMenuItem";
            this.删除此点SeriesMenuItem.Size = new System.Drawing.Size(124, 22);
            this.删除此点SeriesMenuItem.Text = "删除此点";
            // 
            // 编辑此点SeriesMenuItem
            // 
            this.编辑此点SeriesMenuItem.Name = "编辑此点SeriesMenuItem";
            this.编辑此点SeriesMenuItem.Size = new System.Drawing.Size(124, 22);
            this.编辑此点SeriesMenuItem.Text = "编辑此点";
            // 
            // lineMenuStrip
            // 
            this.lineMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.设置颜色LineMenuItem,
            this.设置值LineMenuItem});
            this.lineMenuStrip.Name = "annoRightMenu";
            this.lineMenuStrip.Size = new System.Drawing.Size(125, 48);
            // 
            // 设置颜色LineMenuItem
            // 
            this.设置颜色LineMenuItem.Name = "设置颜色LineMenuItem";
            this.设置颜色LineMenuItem.Size = new System.Drawing.Size(124, 22);
            this.设置颜色LineMenuItem.Text = "设置颜色";
            this.设置颜色LineMenuItem.Click += new System.EventHandler(this.设置颜色LineMenuItem_Click);
            // 
            // 设置值LineMenuItem
            // 
            this.设置值LineMenuItem.Name = "设置值LineMenuItem";
            this.设置值LineMenuItem.Size = new System.Drawing.Size(124, 22);
            this.设置值LineMenuItem.Text = "设置值";
            this.设置值LineMenuItem.Click += new System.EventHandler(this.设置值LineMenuItem_Click);
            // 
            // ChartFeatCurveViewCtrl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.chartControl1);
            this.Name = "ChartFeatCurveViewCtrl";
            this.Size = new System.Drawing.Size(616, 577);
            this.Load += new System.EventHandler(this.LoadWindow);
            ((System.ComponentModel.ISupportInitialize)(textAnnotation1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(textAnnotation6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(strip1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagramPane1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(secondaryAxisY1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(secondaryAxisY2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(pointSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(splineSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(splineSeriesView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(splineSeriesView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(series7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(splineSeriesView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
            this.chartRightMenu.ResumeLayout(false);
            this.annoRightMenu.ResumeLayout(false);
            this.axisRightMenu.ResumeLayout(false);
            this.seriesRightMenu.ResumeLayout(false);
            this.lineMenuStrip.ResumeLayout(false);
            this.ResumeLayout(false);
 
        }
 
        #endregion
 
        private DevExpress.XtraCharts.ChartControl chartControl1;
        private System.Windows.Forms.ContextMenuStrip chartRightMenu;
        private System.Windows.Forms.ToolStripMenuItem DispCoodTextMenu;
        private System.Windows.Forms.ToolStripMenuItem Menu导出图片;
        private System.Windows.Forms.ToolStripMenuItem 设置坐标显示Menu;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
        private System.Windows.Forms.ToolStripMenuItem 不显示曲线标签Item;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
        private System.Windows.Forms.ToolStripMenuItem 不显示测试点Item;
        private System.Windows.Forms.ToolStripMenuItem 设置图形显示Item;
        private System.Windows.Forms.ToolStripMenuItem 显示曲线方程Item;
        private System.Windows.Forms.ToolStripMenuItem 设置运行区域Item;
        private System.Windows.Forms.ToolStripMenuItem 显示测试点参数MenuItem;
        private System.Windows.Forms.ToolStripMenuItem 延长曲线Item;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
        private System.Windows.Forms.ToolStripMenuItem 单色显示MenuItem;
        private System.Windows.Forms.ToolStripMenuItem 不显示工况点Item;
        private System.Windows.Forms.ToolStripMenuItem 保存曲线文件Item;
        private System.Windows.Forms.ContextMenuStrip annoRightMenu;
        private System.Windows.Forms.ToolStripMenuItem 修改Anno名称MenuItem;
        private System.Windows.Forms.ToolStripMenuItem 定位最高效率点MenuItem;
        private System.Windows.Forms.ToolStripMenuItem 显示额定点MenuItem;
        private System.Windows.Forms.ContextMenuStrip axisRightMenu;
        private System.Windows.Forms.ToolStripMenuItem 设置颜色AxisMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 设置坐标值MenuItem;
        private System.Windows.Forms.ContextMenuStrip seriesRightMenu;
        private System.Windows.Forms.ToolStripMenuItem 设置颜色SeriesMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 设置颜色AnnoMenuItem;
        private System.Windows.Forms.ContextMenuStrip lineMenuStrip;
        private System.Windows.Forms.ToolStripMenuItem 设置颜色LineMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 设置值LineMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 转化为压差曲线MenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
        private System.Windows.Forms.ToolStripMenuItem 显示装置曲线MenuItem;
        private System.Windows.Forms.ToolStripMenuItem 设置装置曲线MenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
        private System.Windows.Forms.ToolStripMenuItem 设置值SeriesMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 删除此点SeriesMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 编辑此点SeriesMenuItem;
        private System.Windows.Forms.ToolStripMenuItem MenuItem导出曲线上的点12个点;
        private System.Windows.Forms.ToolStripMenuItem 定位最高流量点MenuItem;
    }
}