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

  1. object ArrowsForm: TArrowsForm
  2.   Left = 88
  3.   Top = 46
  4.   Width = 551
  5.   Height = 452
  6.   Caption = 'TeeChart Arrow Series Example'
  7.   Font.Color = clBlack
  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.   TextHeight = 13
  16.   object Panel1: TPanel
  17.     Left = 0
  18.     Top = 33
  19.     Width = 153
  20.     Height = 392
  21.     Align = alLeft
  22.     TabOrder = 0
  23.     object CheckBox1: TCheckBox
  24.       Left = 20
  25.       Top = 13
  26.       Width = 125
  27.       Height = 17
  28.       Caption = 'Animate !!!'
  29.       Font.Color = clBlack
  30.       Font.Height = -19
  31.       Font.Name = 'Arial'
  32.       Font.Style = [fsBold]
  33.       ParentFont = False
  34.       TabOrder = 0
  35.       OnClick = CheckBox1Click
  36.     end
  37.     object BitBtn3: TBitBtn
  38.       Left = 32
  39.       Top = 309
  40.       Width = 89
  41.       Height = 33
  42.       TabOrder = 1
  43.       Kind = bkClose
  44.     end
  45.     object Memo1: TMemo
  46.       Left = 16
  47.       Top = 48
  48.       Width = 121
  49.       Height = 137
  50.       Lines.Strings = (
  51.         'Each Arrow is '
  52.         'represented as a Series '
  53.         'point with Starting and '
  54.         'Ending coordinates.'
  55.         ''
  56.         'This demo changes '
  57.         'arrow positions randomly '
  58.         'using a'
  59.         'TTimer component.')
  60.       TabOrder = 2
  61.     end
  62.     object CheckBox2: TCheckBox
  63.       Left = 24
  64.       Top = 200
  65.       Width = 97
  66.       Height = 17
  67.       Caption = 'Color &Each'
  68.       State = cbChecked
  69.       TabOrder = 3
  70.       OnClick = CheckBox2Click
  71.     end
  72.     object CheckBox3: TCheckBox
  73.       Left = 24
  74.       Top = 224
  75.       Width = 97
  76.       Height = 17
  77.       Caption = '&3D'
  78.       State = cbChecked
  79.       TabOrder = 4
  80.       OnClick = CheckBox3Click
  81.     end
  82.   end
  83.   object Chart1: TChart
  84.     Left = 153
  85.     Top = 33
  86.     Width = 390
  87.     Height = 392
  88.     AnimatedZoom = True
  89.     BackWall.Brush.Color = clWhite
  90.     BackWall.Color = 8454143
  91.     BackWall.Size = 20
  92.     BottomWall.Color = 8454016
  93.     BottomWall.Size = 20
  94.     Foot.Font.Color = clRed
  95.     Foot.Font.Height = -12
  96.     Foot.Font.Name = 'Arial'
  97.     Foot.Font.Style = [fsItalic]
  98.     Foot.Frame.Color = clScrollBar
  99.     LeftWall.Color = 16777088
  100.     LeftWall.Size = 20
  101.     MarginBottom = 10
  102.     MarginRight = 10
  103.     Title.Frame.Color = clScrollBar
  104.     Title.Text.Strings = (
  105.       '')
  106.     Title.Visible = False
  107.     BackColor = 8454143
  108.     BottomAxis.EndPosition = 100.000000000000000000
  109.     Chart3DPercent = 60
  110.     LeftAxis.EndPosition = 100.000000000000000000
  111.     Legend.Visible = False
  112.     RightAxis.Grid.Visible = False
  113.     RightAxis.MinorTickLength = 3
  114.     RightAxis.EndPosition = 100.000000000000000000
  115.     RightAxis.TickLength = 5
  116.     TopAxis.EndPosition = 100.000000000000000000
  117.     View3DOptions.Elevation = 353
  118.     View3DOptions.Orthogonal = False
  119.     View3DOptions.Perspective = 55
  120.     View3DOptions.Rotation = 334
  121.     View3DOptions.Zoom = 97
  122.     Align = alClient
  123.     TabOrder = 1
  124.     object ArrowSeries1: TArrowSeries
  125.       ColorEachPoint = True
  126.       HorizAxis = aBothHorizAxis
  127.       Marks.ArrowLength = 8
  128.       Marks.Frame.Visible = False
  129.       Marks.Transparent = True
  130.       Marks.Visible = False
  131.       SeriesColor = clRed
  132.       VertAxis = aBothVertAxis
  133.       Pointer.HorizSize = 32
  134.       Pointer.InflateMargins = False
  135.       Pointer.Style = psRectangle
  136.       Pointer.VertSize = 24
  137.       Pointer.Visible = True
  138.       XValues.DateTime = True
  139.       XValues.Name = 'X'
  140.       XValues.Multiplier = 1.000000000000000000
  141.       XValues.Order = loAscending
  142.       YValues.DateTime = False
  143.       YValues.Name = 'Y'
  144.       YValues.Multiplier = 1.000000000000000000
  145.       YValues.Order = loNone
  146.       EndXValues.DateTime = False
  147.       EndXValues.Name = 'EndX'
  148.       EndXValues.Multiplier = 1.000000000000000000
  149.       EndXValues.Order = loNone
  150.       EndYValues.DateTime = False
  151.       EndYValues.Name = 'EndY'
  152.       EndYValues.Multiplier = 1.000000000000000000
  153.       EndYValues.Order = loNone
  154.       StartXValues.DateTime = True
  155.       StartXValues.Name = 'X'
  156.       StartXValues.Multiplier = 1.000000000000000000
  157.       StartXValues.Order = loAscending
  158.       StartYValues.DateTime = False
  159.       StartYValues.Name = 'Y'
  160.       StartYValues.Multiplier = 1.000000000000000000
  161.       StartYValues.Order = loNone
  162.       Left = 104
  163.       Top = 195
  164.     end
  165.   end
  166.   object TeeCommander1: TTeeCommander
  167.     Left = 0
  168.     Top = 0
  169.     Width = 543
  170.     Height = 33
  171.     Panel = Chart1
  172.     Align = alTop
  173.     TabOrder = 2
  174.   end
  175.   object Timer1: TTimer
  176.     Enabled = False
  177.     Interval = 1
  178.     OnTimer = Timer1Timer
  179.     Left = 262
  180.     Top = 67
  181.   end
  182. end
  183.