-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMDRC05U1.dfm
2761 lines (2761 loc) · 98.7 KB
/
MDRC05U1.dfm
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
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object MDRC05F1: TMDRC05F1
Left = 0
Top = 0
ActiveControl = ftc_Chart
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = '[MDRC05F1] '#49457#51109#48156#50977#44257#49440' Chart'
ClientHeight = 877
ClientWidth = 1271
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
Position = poDefault
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object stb_Message: TStatusBar
Left = 0
Top = 858
Width = 1271
Height = 19
Color = clWhite
Panels = <
item
Alignment = taCenter
Width = 50
end>
end
object fpn_Framework: TFlatPanel
Left = -2
Top = 0
Width = 1276
Height = 859
Color = clWhite
TabOrder = 1
UseDockManager = True
object fpn_Chart: TFlatPanel
Left = 1
Top = 1
Width = 675
Height = 857
Align = alLeft
ParentColor = True
TabOrder = 0
UseDockManager = True
object ftc_Chart: TFlatTabControl
Left = 0
Top = 0
Width = 675
Height = 861
ColorUnselectedTab = clMaroon
Tabs.Strings = (
#49888#49373#50500' '#49457#51109#48156#50977#44257#49440
'0~36'#44060#50900' '#49457#51109#48156#50977#44257#49440
'2~18'#49464' '#49457#51109#48156#50977#44257#49440
#46160#50948' '#48177#48516#50948#49688' '#44257#49440
'BMI '#48177#48516#50948#49688' '#44257#49440)
TabHeight = 30
ActiveTab = 4
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Color = 4365289
ParentColor = False
ParentFont = False
TabOrder = 0
OnMouseMove = ftc_ChartMouseMove
OnTabChanged = ftc_ChartTabChanged
object chr_PdGrow: TChart
Left = 1
Top = 31
Width = 673
Height = 829
BackWall.Color = clWhite
BackWall.Size = 4
BackWall.Transparent = False
Gradient.Direction = gdLeftRight
LeftWall.Brush.Color = clRed
LeftWall.Brush.Style = bsCross
LeftWall.Color = 8454016
LeftWall.Pen.Width = 3
Legend.Alignment = laLeft
Legend.ColorWidth = 55
Legend.DividingLines.Style = psDot
Legend.DividingLines.SmallDots = True
Legend.Font.Charset = HANGEUL_CHARSET
Legend.Font.Height = -13
Legend.Font.Name = #44404#47548#52404
Legend.Frame.Visible = False
Legend.HorizMargin = 12
Legend.LegendStyle = lsSeries
Legend.Shadow.HorizSize = 0
Legend.Shadow.VertSize = 0
Legend.Symbol.Width = 55
Legend.TopPos = 11
Legend.Visible = False
MarginBottom = 5
MarginLeft = 5
MarginRight = 5
MarginTop = 5
Title.Brush.Color = clSilver
Title.Font.Charset = HANGEUL_CHARSET
Title.Font.Color = clBlack
Title.Font.Height = -15
Title.Font.Name = #44404#47548#52404
Title.Font.Style = [fsBold]
Title.Text.Strings = (
'TChart')
Title.Visible = False
OnUndoZoom = chr_PdGrowUndoZoom
OnZoom = chr_PdGrowZoom
BottomAxis.Automatic = False
BottomAxis.AutomaticMaximum = False
BottomAxis.AutomaticMinimum = False
BottomAxis.AxisValuesFormat = '#,##0'
BottomAxis.ExactDateTime = False
BottomAxis.Grid.Style = psDot
BottomAxis.Increment = 1.000000000000000000
BottomAxis.LabelsFormat.Font.Charset = ANSI_CHARSET
BottomAxis.LabelsMultiLine = True
BottomAxis.LabelStyle = talValue
BottomAxis.Maximum = 18.000000000000000000
BottomAxis.Minimum = 2.000000000000000000
BottomAxis.MinorGrid.Color = clSilver
BottomAxis.MinorTickCount = 0
BottomAxis.MinorTickLength = 0
BottomAxis.MinorTicks.Style = psDot
BottomAxis.MinorTicks.Visible = False
BottomAxis.RoundFirstLabel = False
BottomAxis.Ticks.Style = psDot
BottomAxis.TicksInner.Style = psDot
Chart3DPercent = 10
DepthAxis.Automatic = False
DepthAxis.AutomaticMaximum = False
DepthAxis.AutomaticMinimum = False
DepthAxis.ExactDateTime = False
DepthAxis.Grid.Color = 4227327
DepthAxis.Increment = 5.000000000000000000
DepthAxis.Maximum = 185.000000000000000000
DepthAxis.Minimum = 50.000000000000000000
DepthAxis.TickLength = 7
DepthAxis.Ticks.Width = 6
Hover.Visible = False
LeftAxis.Automatic = False
LeftAxis.AutomaticMaximum = False
LeftAxis.AutomaticMinimum = False
LeftAxis.ExactDateTime = False
LeftAxis.Grid.Style = psDot
LeftAxis.Increment = 5.000000000000000000
LeftAxis.LabelsMultiLine = True
LeftAxis.LabelsSeparation = 5
LeftAxis.LabelsSize = 30
LeftAxis.Maximum = 200.000000000000000000
LeftAxis.MinorGrid.Style = psDot
LeftAxis.MinorTickCount = 4
LeftAxis.RoundFirstLabel = False
RightAxis.Automatic = False
RightAxis.AutomaticMaximum = False
RightAxis.AutomaticMinimum = False
RightAxis.ExactDateTime = False
RightAxis.Grid.Style = psDot
RightAxis.Increment = 5.000000000000000000
RightAxis.LabelsMultiLine = True
RightAxis.LabelsSize = 30
RightAxis.Maximum = 200.000000000000000000
RightAxis.MinorGrid.Style = psDot
RightAxis.MinorTickCount = 4
RightAxis.RoundFirstLabel = False
TopAxis.Automatic = False
TopAxis.AutomaticMaximum = False
TopAxis.AutomaticMinimum = False
TopAxis.ExactDateTime = False
TopAxis.Grid.Style = psDot
TopAxis.Increment = 1.000000000000000000
TopAxis.LabelsMultiLine = True
TopAxis.LabelStyle = talValue
TopAxis.Maximum = 18.000000000000000000
TopAxis.Minimum = 2.000000000000000000
TopAxis.MinorTickCount = 0
TopAxis.MinorTickLength = 0
TopAxis.MinorTicks.Style = psDot
TopAxis.MinorTicks.Visible = False
TopAxis.RoundFirstLabel = False
View3D = False
View3DOptions.HorizOffset = -19
View3DOptions.VertOffset = -19
View3DOptions.Zoom = 87
View3DWalls = False
OnAfterDraw = chr_PdGrowAfterDraw
OnGetNextAxisLabel = chr_PdGrowGetNextAxisLabel
Align = alClient
BevelInner = bvLowered
Color = clWhite
ParentShowHint = False
ShowHint = False
TabOrder = 0
OnClick = chr_PdGrowClick
OnMouseMove = chr_PdGrowMouseMove
DefaultCanvas = 'TGDIPlusCanvas'
ColorPaletteIndex = 13
object lb_Age: TLabel
Left = 549
Top = 801
Width = 60
Height = 16
Caption = #50672#47161'('#49464')'
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
Transparent = False
end
object lb_AxisLocate: TLabel
Left = 60
Top = 9
Width = 81
Height = 18
Caption = #51340#54364' '#48372#44592' : '
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Transparent = False
Visible = False
end
object Label1: TLabel
Left = 6
Top = 809
Width = 296
Height = 14
Caption = #39#8600#39#48169#54693#51004#47196' '#46300#47000#44536' : '#54869#45824' '#39#8598#39#48169#54693#51004#47196' '#46300#47000#44536' : '#52629#49548
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
end
object lb_RightHead: TLabel
Left = 463
Top = 4
Width = 26
Height = 28
Caption = #46160#50948#13#10' cm'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Transparent = False
Visible = False
end
object lb_RightBmi: TLabel
Left = 498
Top = 4
Width = 33
Height = 28
Caption = ' BMI'#13#10#13199'/'#13217
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Transparent = False
Visible = False
end
object lb_Hgt3rd: TLabel
Left = 396
Top = 734
Width = 13
Height = 11
Caption = '3rd'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Wgt3rd: TLabel
Left = 396
Top = 751
Width = 13
Height = 11
Caption = '3rd'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Hgt5th: TLabel
Left = 414
Top = 734
Width = 13
Height = 11
Caption = '5th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Hgt10th: TLabel
Left = 434
Top = 734
Width = 18
Height = 11
Caption = '10th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Hgt25th: TLabel
Left = 457
Top = 734
Width = 18
Height = 11
Caption = '25th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Hgt50th: TLabel
Left = 481
Top = 734
Width = 18
Height = 11
Caption = '50th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Hgt75th: TLabel
Left = 505
Top = 734
Width = 18
Height = 11
Caption = '75th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Hgt90th: TLabel
Left = 548
Top = 734
Width = 18
Height = 11
Caption = '90th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Hgt95th: TLabel
Left = 572
Top = 734
Width = 18
Height = 11
Caption = '95th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Hgt97th: TLabel
Left = 596
Top = 734
Width = 18
Height = 11
Caption = '97th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Wgt5th: TLabel
Left = 414
Top = 751
Width = 13
Height = 11
Caption = '5th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Wgt10th: TLabel
Left = 435
Top = 752
Width = 18
Height = 11
Caption = '10th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Wgt25th: TLabel
Left = 457
Top = 752
Width = 18
Height = 11
Caption = '25th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Wgt50th: TLabel
Left = 480
Top = 751
Width = 18
Height = 11
Caption = '50th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Wgt75th: TLabel
Left = 505
Top = 751
Width = 18
Height = 11
Caption = '75th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Wgt90th: TLabel
Left = 548
Top = 751
Width = 18
Height = 11
Caption = '90th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Wgt95th: TLabel
Left = 572
Top = 752
Width = 18
Height = 11
Caption = '95th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Wgt97th: TLabel
Left = 596
Top = 752
Width = 18
Height = 11
Caption = '97th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Neo3Rd: TLabel
Left = 415
Top = 713
Width = 13
Height = 11
Caption = '3rd'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Neo10th: TLabel
Left = 453
Top = 713
Width = 18
Height = 11
Caption = '10th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Neo50th: TLabel
Left = 500
Top = 713
Width = 18
Height = 11
Caption = '50th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Neo90th: TLabel
Left = 548
Top = 713
Width = 18
Height = 11
Caption = '90th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_Neo97th: TLabel
Left = 589
Top = 713
Width = 18
Height = 11
Caption = '97th'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Transparent = False
Visible = False
end
object lb_BornWks: TLabel
Left = 244
Top = 790
Width = 73
Height = 16
Caption = #52636#49373#51452#49688' :'
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
Transparent = False
Visible = False
end
object lb_Hgt85th: TLabel
Left = 526
Top = 734
Width = 18
Height = 11
Caption = '85th'
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clRed
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentFont = False
Transparent = False
Visible = False
end
object fcb_AxisLocate: TFlatCheckBox
Left = 531
Top = 3
Width = 68
Height = 15
Hint = 'Chart'#45236' '#47560#50864#49828' '#54252#51064#53552' '#50948#52824#51032' '#51340'/'#50864' '#52629' Data '#51340#54364#47484' '#54364#44592#54633#45768#45796'.'
Caption = #51340#54364#48372#44592
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentFont = False
ShowHint = True
TabOrder = 0
TabStop = True
OnClick = fcb_AxisLocateClick
end
object fcb_ConvertWks: TFlatCheckBox
Left = 531
Top = 20
Width = 69
Height = 14
Hint = '36'#44060#50900' '#51060#45236' '#48376#50896#52636#49373' '#54872#50500#51064' '#44221#50864' '#44368#51221#50672#47161#51004#47196' '#54872#49328#54616#50668' Chart'#50640' '#50672#46041#54633#45768#45796'.'
Caption = #44368#51221#50672#47161
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentFont = False
ShowHint = True
TabOrder = 1
TabStop = True
end
object fpn_LeftHgtAxis: TFlatPanel
Left = 4
Top = 41
Width = 28
Height = 632
ColorHighLight = clWhite
ColorShadow = clWhite
Caption = #49888#51109
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentColor = True
TabOrder = 2
UseDockManager = True
object lb_LeftHgt: TLabel
Left = 7
Top = 323
Width = 17
Height = 14
Caption = 'cm'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Transparent = False
end
end
object fpn_LeftWgtAxis: TFlatPanel
Left = 31
Top = 668
Width = 26
Height = 109
ColorHighLight = clWhite
ColorShadow = clWhite
Caption = #52404#51473
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentColor = True
TabOrder = 3
UseDockManager = True
object lb_LeftWgt: TLabel
Left = 7
Top = 60
Width = 15
Height = 14
Caption = 'kg'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Transparent = False
end
end
object fpn_RightWgtAxis: TFlatPanel
Left = 641
Top = 196
Width = 28
Height = 490
ColorHighLight = clWhite
ColorShadow = clWhite
Caption = #52404#51473
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentColor = True
TabOrder = 4
UseDockManager = True
object lb_RightWgt: TLabel
Left = 7
Top = 254
Width = 15
Height = 14
Caption = 'kg'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Transparent = False
end
end
object fpn_RightHgtAxis: TFlatPanel
Left = 619
Top = 47
Width = 27
Height = 252
ColorHighLight = clWhite
ColorShadow = clWhite
Caption = #49888#51109
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentColor = True
TabOrder = 5
UseDockManager = True
object lb_RightHgt: TLabel
Left = 6
Top = 133
Width = 17
Height = 14
Caption = 'cm'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
Transparent = False
end
end
object Series18: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 15659519
Title = 'Wgt97th'
VertAxis = aRightAxis
AreaChartBrush.Color = clGray
AreaChartBrush.BackColor = clDefault
DrawArea = True
LinePen.Style = psDot
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series17: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 14147327
Title = 'Wgt95th'
VertAxis = aRightAxis
AreaChartBrush.Color = clGray
AreaChartBrush.BackColor = clDefault
DrawArea = True
LinePen.Style = psDot
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series16: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 12898047
Title = 'Wgt90th'
VertAxis = aRightAxis
AreaChartBrush.Color = clGray
AreaChartBrush.BackColor = clDefault
DrawArea = True
LinePen.Style = psDot
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series15: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 11583231
Title = 'Wgt75th'
VertAxis = aRightAxis
AreaChartBrush.Color = clGray
AreaChartBrush.BackColor = clDefault
DrawArea = True
LinePen.Style = psDot
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series14: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 11379967
Title = 'Wgt50th'
VertAxis = aRightAxis
AreaChartBrush.Color = clGray
AreaChartBrush.BackColor = clDefault
DrawArea = True
LinePen.Style = psDot
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series13: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 10853375
Title = 'Wgt25th'
VertAxis = aRightAxis
AreaChartBrush.Color = clGray
AreaChartBrush.BackColor = clDefault
DrawArea = True
LinePen.Style = psDot
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series12: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 9734399
Title = 'Wgt10th'
VertAxis = aRightAxis
AreaChartBrush.Color = clGray
AreaChartBrush.BackColor = clDefault
DrawArea = True
LinePen.Style = psDot
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series11: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 8286719
Title = 'Wgt5th'
VertAxis = aRightAxis
AreaChartBrush.Color = clGray
AreaChartBrush.BackColor = clDefault
DrawArea = True
LinePen.Style = psDot
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series10: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 5324543
Title = 'Wgt3rd'
VertAxis = aRightAxis
AreaChartBrush.Color = clGray
AreaChartBrush.BackColor = clDefault
AreaLinesPen.Color = -1610612736
DrawArea = True
LinePen.Style = psDot
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series9: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 15659519
Title = 'Hgt97th'
AreaChartBrush.Color = clGray
AreaChartBrush.BackColor = clDefault
DrawArea = True
LinePen.Style = psDot
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series7: TAreaSeries
Selected.Hover.Visible = False
SeriesColor = 14147327