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

  1. object StdDevForm: TStdDevForm
  2.   Left = 200
  3.   Top = 108
  4.   Width = 466
  5.   Height = 375
  6.   Caption = 'Standard Deviation Function'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   TextHeight = 13
  15.   object Panel1: TPanel
  16.     Left = 0
  17.     Top = 0
  18.     Width = 458
  19.     Height = 89
  20.     Align = alTop
  21.     Caption = 'Panel1'
  22.     TabOrder = 0
  23.     object Memo1: TMemo
  24.       Left = 8
  25.       Top = 8
  26.       Width = 321
  27.       Height = 73
  28.       Lines.Strings = (
  29.         'The Standard Deviation Function calculates and plots'
  30.         'this formula: Sqrt( ((n*Sum(y*y)) - Sqr(Sum(y))) / (n*(n-1)) )'
  31.         ''
  32.         '"Complete" Std.Deviation calculates : '
  33.         'Sqrt( ((n*Sum(y*y)) - Sqr(Sum(y))) / Sqrt(n) )')
  34.       TabOrder = 0
  35.     end
  36.     object Button1: TButton
  37.       Left = 343
  38.       Top = 44
  39.       Width = 75
  40.       Height = 25
  41.       Caption = 'Close'
  42.       Default = True
  43.       TabOrder = 1
  44.       OnClick = Button1Click
  45.     end
  46.     object CheckBox2: TCheckBox
  47.       Left = 339
  48.       Top = 16
  49.       Width = 113
  50.       Height = 17
  51.       Caption = '&Complete Std.Dev.'
  52.       TabOrder = 2
  53.       OnClick = CheckBox2Click
  54.     end
  55.   end
  56.   object Chart1: TChart
  57.     Left = 0
  58.     Top = 89
  59.     Width = 458
  60.     Height = 259
  61.     BackWall.Brush.Color = clWhite
  62.     BackWall.Brush.Style = bsClear
  63.     Title.Text.Strings = (
  64.       'TChart')
  65.     Title.Visible = False
  66.     Legend.Alignment = laTop
  67.     Align = alClient
  68.     TabOrder = 1
  69.     object Series1: TLineSeries
  70.       Marks.ArrowLength = 8
  71.       Marks.Visible = False
  72.       SeriesColor = clRed
  73.       Title = 'Data'
  74.       Pointer.InflateMargins = True
  75.       Pointer.Style = psRectangle
  76.       Pointer.Visible = False
  77.       XValues.DateTime = False
  78.       XValues.Name = 'X'
  79.       XValues.Multiplier = 1.000000000000000000
  80.       XValues.Order = loAscending
  81.       YValues.DateTime = False
  82.       YValues.Name = 'Y'
  83.       YValues.Multiplier = 1.000000000000000000
  84.       YValues.Order = loNone
  85.     end
  86.     object Series2: TLineSeries
  87.       Marks.ArrowLength = 8
  88.       Marks.Visible = True
  89.       DataSource = Series1
  90.       SeriesColor = clGreen
  91.       Title = 'Standard Deviation'
  92.       Pointer.InflateMargins = True
  93.       Pointer.Style = psRectangle
  94.       Pointer.Visible = False
  95.       XValues.DateTime = False
  96.       XValues.Name = 'X'
  97.       XValues.Multiplier = 1.000000000000000000
  98.       XValues.Order = loAscending
  99.       YValues.DateTime = False
  100.       YValues.Name = 'Y'
  101.       YValues.Multiplier = 1.000000000000000000
  102.       YValues.Order = loNone
  103.       object TeeFunction1: TStdDeviationFunction
  104.       end
  105.     end
  106.   end
  107. end
  108.