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

  1. object ErrorBarForm: TErrorBarForm
  2.   Left = 100
  3.   Top = 44
  4.   Width = 547
  5.   Height = 480
  6.   ActiveControl = CheckBox1
  7.   Caption = 'TeeChart Error Bar Series Example'
  8.   Font.Color = clBlack
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   Position = poScreenCenter
  14.   Scaled = False
  15.   OnCreate = FormCreate
  16.   TextHeight = 13
  17.   object Chart1: TChart
  18.     Left = 0
  19.     Top = 97
  20.     Width = 539
  21.     Height = 356
  22.     BackWall.Brush.Color = clWhite
  23.     BackWall.Color = clWhite
  24.     BackWall.Size = 10
  25.     BottomWall.Size = 10
  26.     Foot.Font.Color = clRed
  27.     Foot.Font.Height = -12
  28.     Foot.Font.Name = 'Arial'
  29.     Foot.Font.Style = [fsItalic]
  30.     Foot.Frame.Color = clScrollBar
  31.     LeftWall.Size = 10
  32.     Title.Frame.Color = clScrollBar
  33.     Title.Text.Strings = (
  34.       'TChart Component')
  35.     Title.Visible = False
  36.     BackColor = clWhite
  37.     BottomAxis.LabelsAngle = 90
  38.     BottomAxis.EndPosition = 100.000000000000000000
  39.     Chart3DPercent = 30
  40.     LeftAxis.EndPosition = 100.000000000000000000
  41.     Legend.ColorWidth = 40
  42.     RightAxis.EndPosition = 100.000000000000000000
  43.     TopAxis.EndPosition = 100.000000000000000000
  44.     View3DOptions.Orthogonal = False
  45.     View3DOptions.Perspective = 55
  46.     View3DOptions.Zoom = 90
  47.     OnGetLegendText = Chart1GetLegendText
  48.     Align = alClient
  49.     TabOrder = 0
  50.     OnMouseMove = Chart1MouseMove
  51.     object ErrorBarSeries1: TErrorBarSeries
  52.       ColorEachPoint = True
  53.       Marks.ArrowLength = 20
  54.       Marks.Visible = False
  55.       SeriesColor = clRed
  56.       Dark3D = False
  57.       XValues.DateTime = True
  58.       XValues.Name = 'X'
  59.       XValues.Multiplier = 1.000000000000000000
  60.       XValues.Order = loAscending
  61.       YValues.DateTime = False
  62.       YValues.Name = 'Y'
  63.       YValues.Multiplier = 1.000000000000000000
  64.       YValues.Order = loNone
  65.       ErrorPen.Color = clBlue
  66.       ErrorPen.Width = 2
  67.       ErrorValues.DateTime = False
  68.       ErrorValues.Name = 'StdError'
  69.       ErrorValues.Multiplier = 1.000000000000000000
  70.       ErrorValues.Order = loNone
  71.       Left = 35
  72.       Top = 45
  73.     end
  74.   end
  75.   object Panel1: TPanel
  76.     Left = 0
  77.     Top = 0
  78.     Width = 539
  79.     Height = 97
  80.     Align = alTop
  81.     TabOrder = 1
  82.     object Label1: TLabel
  83.       Left = 356
  84.       Top = 44
  85.       Width = 63
  86.       Height = 23
  87.       Caption = 'Label1'
  88.       Font.Color = clBlack
  89.       Font.Height = -19
  90.       Font.Name = 'Arial'
  91.       Font.Style = [fsBold, fsItalic]
  92.       ParentFont = False
  93.     end
  94.     object CheckBox1: TCheckBox
  95.       Left = 360
  96.       Top = 12
  97.       Width = 45
  98.       Height = 17
  99.       Caption = '3&D'
  100.       State = cbChecked
  101.       TabOrder = 0
  102.       OnClick = CheckBox1Click
  103.     end
  104.     object BitBtn3: TBitBtn
  105.       Left = 448
  106.       Top = 10
  107.       Width = 75
  108.       Height = 25
  109.       Caption = '&Close'
  110.       TabOrder = 1
  111.       OnClick = BitBtn3Click
  112.       NumGlyphs = 2
  113.     end
  114.     object Memo1: TMemo
  115.       Left = 8
  116.       Top = 5
  117.       Width = 305
  118.       Height = 86
  119.       Lines.Strings = (
  120.         'The Error Bar Series is a standard vertical Bar Series'
  121.         'showing "Error" values on top using a "T" shape.'
  122.         '"Error" values can be expressed in axis scales or pixels.'
  123.         'All properties and methods of normal Bar series apply to'
  124.         'Error Bar series.')
  125.       TabOrder = 2
  126.     end
  127.   end
  128. end
  129.