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

  1. object ScrollForm: TScrollForm
  2.   Left = 102
  3.   Top = 101
  4.   Width = 582
  5.   Height = 351
  6.   ActiveControl = Button1
  7.   Caption = 'TeeChart - Automatic Scroll 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 = 53
  20.     Width = 574
  21.     Height = 271
  22.     BackImageInside = True
  23.     BackImageMode = pbmTile
  24.     BackWall.Brush.Color = clWhite
  25.     BackWall.Brush.Style = bsClear
  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.     Title.Frame.Color = clScrollBar
  32.     Title.Text.Strings = (
  33.       'TChart Component')
  34.     BottomAxis.Grid.Color = clScrollBar
  35.     BottomAxis.EndPosition = 100.000000000000000000
  36.     LeftAxis.Grid.Color = clScrollBar
  37.     LeftAxis.EndPosition = 100.000000000000000000
  38.     RightAxis.Grid.Color = clScrollBar
  39.     RightAxis.EndPosition = 100.000000000000000000
  40.     TopAxis.Grid.Color = clScrollBar
  41.     TopAxis.EndPosition = 100.000000000000000000
  42.     Align = alClient
  43.     TabOrder = 0
  44.     object LineSeries1: TLineSeries
  45.       Marks.ArrowLength = 8
  46.       Marks.Visible = False
  47.       SeriesColor = clRed
  48.       OnAfterAdd = LineSeries1AfterAdd
  49.       Pointer.InflateMargins = True
  50.       Pointer.Style = psRectangle
  51.       Pointer.Visible = False
  52.       XValues.DateTime = True
  53.       XValues.Name = 'X'
  54.       XValues.Multiplier = 1.000000000000000000
  55.       XValues.Order = loAscending
  56.       YValues.DateTime = False
  57.       YValues.Name = 'Y'
  58.       YValues.Multiplier = 1.000000000000000000
  59.       YValues.Order = loNone
  60.       Left = 119
  61.       Top = 94
  62.     end
  63.   end
  64.   object Panel1: TPanel
  65.     Left = 0
  66.     Top = 0
  67.     Width = 574
  68.     Height = 53
  69.     Align = alTop
  70.     TabOrder = 1
  71.     object Button1: TButton
  72.       Left = 191
  73.       Top = 9
  74.       Width = 250
  75.       Height = 33
  76.       Caption = 'Click here to add a new point and scroll !!!'
  77.       TabOrder = 0
  78.       OnClick = Button1Click
  79.     end
  80.     object BitBtn3: TBitBtn
  81.       Left = 8
  82.       Top = 12
  83.       Width = 89
  84.       Height = 33
  85.       TabOrder = 1
  86.       Kind = bkClose
  87.     end
  88.     object CBVertical: TCheckBox
  89.       Left = 110
  90.       Top = 18
  91.       Width = 71
  92.       Height = 17
  93.       Caption = '&Vertical'
  94.       TabOrder = 2
  95.       OnClick = CBVerticalClick
  96.     end
  97.   end
  98. end
  99.