home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / DELPHI4.EXE / %MAINDIR% / Examples / Extended / Uarray.dfm / Uarray.txt
Encoding:
Text File  |  1998-11-17  |  2.8 KB  |  131 lines

  1. object ArrayForm: TArrayForm
  2.   Left = 124
  3.   Top = 31
  4.   Width = 566
  5.   Height = 455
  6.   Caption = 'Using Arrays with TeeChart Pro'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   Position = poScreenCenter
  13.   Scaled = False
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   TextHeight = 13
  17.   object Chart1: TChart
  18.     Left = 0
  19.     Top = 122
  20.     Width = 558
  21.     Height = 306
  22.     AnimatedZoom = True
  23.     AnimatedZoomSteps = 3
  24.     BackWall.Brush.Color = clWhite
  25.     BackWall.Brush.Style = bsClear
  26.     Title.Text.Strings = (
  27.       'TChart')
  28.     Title.Visible = False
  29.     Legend.Visible = False
  30.     View3D = False
  31.     Align = alClient
  32.     TabOrder = 0
  33.     object Series1: TFastLineSeries
  34.       Marks.ArrowLength = 8
  35.       Marks.Visible = False
  36.       SeriesColor = clRed
  37.       LinePen.Color = clRed
  38.       XValues.DateTime = False
  39.       XValues.Name = 'X'
  40.       XValues.Multiplier = 1.000000000000000000
  41.       XValues.Order = loAscending
  42.       YValues.DateTime = False
  43.       YValues.Name = 'Y'
  44.       YValues.Multiplier = 1.000000000000000000
  45.       YValues.Order = loNone
  46.     end
  47.   end
  48.   object Panel1: TPanel
  49.     Left = 0
  50.     Top = 0
  51.     Width = 558
  52.     Height = 89
  53.     Align = alTop
  54.     TabOrder = 1
  55.     object LabelTime: TLabel
  56.       Left = 464
  57.       Top = 64
  58.       Width = 64
  59.       Height = 13
  60.       Caption = 'Elapsed Time'
  61.     end
  62.     object Label1: TLabel
  63.       Left = 464
  64.       Top = 48
  65.       Width = 60
  66.       Height = 13
  67.       Caption = 'Milliseconds:'
  68.     end
  69.     object Memo1: TMemo
  70.       Left = 8
  71.       Top = 8
  72.       Width = 321
  73.       Height = 73
  74.       Lines.Strings = (
  75.         'This example shows how to use your custom Arrays of values'
  76.         'with TeeChart Pro.'
  77.         'Hundred Thousand ( 100000 ) points are added and plotted '
  78.         'using Arrays and a Fast-Line Series.   Lot'#39's of Points in few '
  79.         'milliseconds !')
  80.       TabOrder = 0
  81.     end
  82.     object Button1: TButton
  83.       Left = 463
  84.       Top = 12
  85.       Width = 75
  86.       Height = 25
  87.       Caption = 'Close'
  88.       Default = True
  89.       TabOrder = 1
  90.       OnClick = Button1Click
  91.     end
  92.     object UseArrays: TCheckBox
  93.       Left = 342
  94.       Top = 12
  95.       Width = 97
  96.       Height = 17
  97.       Caption = 'Use Arrays'
  98.       State = cbChecked
  99.       TabOrder = 2
  100.     end
  101.     object Button2: TButton
  102.       Left = 342
  103.       Top = 55
  104.       Width = 97
  105.       Height = 25
  106.       Caption = 'Fill and Display !'
  107.       TabOrder = 3
  108.       OnClick = Button2Click
  109.     end
  110.     object CheckBox2: TCheckBox
  111.       Left = 342
  112.       Top = 32
  113.       Width = 97
  114.       Height = 17
  115.       Caption = '&Buffered display'
  116.       State = cbChecked
  117.       TabOrder = 4
  118.       OnClick = CheckBox2Click
  119.     end
  120.   end
  121.   object TeeCommander1: TTeeCommander
  122.     Left = 0
  123.     Top = 89
  124.     Width = 558
  125.     Height = 33
  126.     Panel = Chart1
  127.     Align = alTop
  128.     TabOrder = 2
  129.   end
  130. end
  131.