home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / EXTENDED / UQUALI.DFM / UQUALI.txt
Encoding:
Text File  |  1998-10-24  |  5.1 KB  |  201 lines

  1. object FormQuality: TFormQuality
  2.   Left = 120
  3.   Top = 46
  4.   ActiveControl = Chart1
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'TeeChart-Pro -- Quality Control SPC Charting'
  8.   ClientHeight = 449
  9.   ClientWidth = 506
  10.   Color = clSilver
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   PixelsPerInch = 96
  16.   Position = poScreenCenter
  17.   Scaled = False
  18.   OnCreate = FormCreate
  19.   TextHeight = 13
  20.   object Label1: TLabel
  21.     Left = 312
  22.     Top = 360
  23.     Width = 52
  24.     Height = 13
  25.     Caption = 'Upper limit:'
  26.   end
  27.   object Label2: TLabel
  28.     Left = 312
  29.     Top = 384
  30.     Width = 52
  31.     Height = 13
  32.     Caption = 'Lower limit:'
  33.   end
  34.   object Chart1: TChart
  35.     Left = 2
  36.     Top = 35
  37.     Width = 502
  38.     Height = 302
  39.     AnimatedZoom = True
  40.     BackWall.Brush.Color = clWhite
  41.     BackWall.Brush.Style = bsClear
  42.     Title.Font.Color = clBlue
  43.     Title.Font.Height = -16
  44.     Title.Font.Name = 'Arial'
  45.     Title.Font.Style = [fsBold]
  46.     Title.Text.Strings = (
  47.       'Quality Control Chart')
  48.     BottomAxis.Grid.Visible = False
  49.     BottomAxis.EndPosition = 100.000000000000000000
  50.     BottomAxis.Title.Caption = 'Samples'
  51.     Chart3DPercent = 10
  52.     LeftAxis.Grid.Style = psSolid
  53.     LeftAxis.LabelsFont.Color = clRed
  54.     LeftAxis.LabelsFont.Height = -11
  55.     LeftAxis.LabelsFont.Name = 'Arial'
  56.     LeftAxis.LabelsFont.Style = []
  57.     LeftAxis.EndPosition = 100.000000000000000000
  58.     LeftAxis.Title.Caption = 'Production (number of pieces)'
  59.     Legend.Alignment = laBottom
  60.     Legend.Color = clAqua
  61.     Legend.ColorWidth = 37
  62.     RightAxis.AxisValuesFormat = '#,##0.###%'
  63.     RightAxis.Grid.Visible = False
  64.     RightAxis.LabelsFont.Color = clGreen
  65.     RightAxis.LabelsFont.Height = -11
  66.     RightAxis.LabelsFont.Name = 'Arial'
  67.     RightAxis.LabelsFont.Style = [fsBold]
  68.     RightAxis.EndPosition = 100.000000000000000000
  69.     RightAxis.Title.Caption = 'SPC %'
  70.     TopAxis.EndPosition = 100.000000000000000000
  71.     TabOrder = 0
  72.     object Good: TLineSeries
  73.       Marks.ArrowLength = 8
  74.       Marks.Visible = False
  75.       SeriesColor = clRed
  76.       Pointer.InflateMargins = True
  77.       Pointer.Style = psRectangle
  78.       Pointer.Visible = True
  79.       XValues.DateTime = False
  80.       XValues.Name = 'X'
  81.       XValues.Multiplier = 1.000000000000000000
  82.       XValues.Order = loAscending
  83.       YValues.DateTime = False
  84.       YValues.Name = 'Y'
  85.       YValues.Multiplier = 1.000000000000000000
  86.       YValues.Order = loNone
  87.     end
  88.     object Bad: TLineSeries
  89.       Marks.ArrowLength = 8
  90.       Marks.Visible = False
  91.       SeriesColor = clGreen
  92.       Title = 'Bad % on Good'
  93.       VertAxis = aRightAxis
  94.       Pointer.InflateMargins = True
  95.       Pointer.Style = psRectangle
  96.       Pointer.Visible = True
  97.       XValues.DateTime = False
  98.       XValues.Name = 'X'
  99.       XValues.Multiplier = 1.000000000000000000
  100.       XValues.Order = loAscending
  101.       YValues.DateTime = False
  102.       YValues.Name = 'Y'
  103.       YValues.Multiplier = 1.000000000000000000
  104.       YValues.Order = loNone
  105.     end
  106.     object Upper: TFastLineSeries
  107.       Marks.ArrowLength = 8
  108.       Marks.Visible = False
  109.       SeriesColor = clYellow
  110.       Title = 'Upper %'
  111.       VertAxis = aRightAxis
  112.       LinePen.Color = clYellow
  113.       LinePen.Width = 3
  114.       XValues.DateTime = False
  115.       XValues.Name = 'X'
  116.       XValues.Multiplier = 1.000000000000000000
  117.       XValues.Order = loAscending
  118.       YValues.DateTime = False
  119.       YValues.Name = 'Y'
  120.       YValues.Multiplier = 1.000000000000000000
  121.       YValues.Order = loNone
  122.     end
  123.     object Lower: TFastLineSeries
  124.       Marks.ArrowLength = 8
  125.       Marks.Visible = False
  126.       SeriesColor = clBlue
  127.       Title = 'Lower %'
  128.       VertAxis = aRightAxis
  129.       LinePen.Color = clBlue
  130.       LinePen.Width = 3
  131.       XValues.DateTime = False
  132.       XValues.Name = 'X'
  133.       XValues.Multiplier = 1.000000000000000000
  134.       XValues.Order = loAscending
  135.       YValues.DateTime = False
  136.       YValues.Name = 'Y'
  137.       YValues.Multiplier = 1.000000000000000000
  138.       YValues.Order = loNone
  139.     end
  140.   end
  141.   object Memo1: TMemo
  142.     Left = 8
  143.     Top = 344
  144.     Width = 281
  145.     Height = 97
  146.     Lines.Strings = (
  147.       '"Good" is the number of correctly produced parts.'
  148.       '"Bad" is the percent of wrong parts over the "Good".'
  149.       ''
  150.       'The "Upper" and "Lower" line values are calculated '
  151.       'using the "Good" and "Bad" series, and quality'
  152.       'control statistical formulae.')
  153.     TabOrder = 1
  154.   end
  155.   object Button1: TButton
  156.     Left = 424
  157.     Top = 416
  158.     Width = 75
  159.     Height = 25
  160.     Caption = '&Close'
  161.     TabOrder = 2
  162.     OnClick = Button1Click
  163.   end
  164.   object UpperEdit: TEdit
  165.     Left = 374
  166.     Top = 356
  167.     Width = 121
  168.     Height = 21
  169.     TabOrder = 3
  170.     Text = 'UpperEdit'
  171.     OnChange = UpperEditChange
  172.   end
  173.   object LowerEdit: TEdit
  174.     Left = 374
  175.     Top = 380
  176.     Width = 121
  177.     Height = 21
  178.     TabOrder = 4
  179.     Text = 'LowerEdit'
  180.     OnChange = LowerEditChange
  181.   end
  182.   object Button2: TButton
  183.     Left = 304
  184.     Top = 416
  185.     Width = 75
  186.     Height = 25
  187.     Caption = '&Help !'
  188.     TabOrder = 5
  189.     OnClick = Button2Click
  190.   end
  191.   object TeeCommander1: TTeeCommander
  192.     Left = 0
  193.     Top = 0
  194.     Width = 506
  195.     Height = 33
  196.     Panel = Chart1
  197.     Align = alTop
  198.     TabOrder = 6
  199.   end
  200. end
  201.