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

  1. object DrawPointerForm: TDrawPointerForm
  2.   Left = 200
  3.   Top = 105
  4.   Width = 544
  5.   Height = 361
  6.   ActiveControl = Every
  7.   Caption = 'TeeChart Pro -- Drawing Series pointers at specific intervals'
  8.   Font.Color = clWindowText
  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 Label1: TLabel
  18.     Left = 8
  19.     Top = 280
  20.     Width = 100
  21.     Height = 13
  22.     Caption = 'Draw pointers every: '
  23.   end
  24.   object Label2: TLabel
  25.     Left = 112
  26.     Top = 280
  27.     Width = 6
  28.     Height = 13
  29.     Caption = '5'
  30.   end
  31.   object Label3: TLabel
  32.     Left = 144
  33.     Top = 280
  34.     Width = 31
  35.     Height = 13
  36.     Caption = 'points.'
  37.   end
  38.   object Label4: TLabel
  39.     Left = 8
  40.     Top = 304
  41.     Width = 66
  42.     Height = 13
  43.     Caption = 'Start at point: '
  44.   end
  45.   object Label5: TLabel
  46.     Left = 136
  47.     Top = 304
  48.     Width = 6
  49.     Height = 13
  50.     Caption = '0'
  51.   end
  52.   object Chart1: TChart
  53.     Left = 4
  54.     Top = 2
  55.     Width = 525
  56.     Height = 271
  57.     BackWall.Brush.Color = clWhite
  58.     BackWall.Brush.Style = bsClear
  59.     Title.Text.Strings = (
  60.       'TChart')
  61.     BottomAxis.EndPosition = 100.000000000000000000
  62.     LeftAxis.EndPosition = 100.000000000000000000
  63.     Legend.Visible = False
  64.     RightAxis.EndPosition = 100.000000000000000000
  65.     TopAxis.EndPosition = 100.000000000000000000
  66.     View3D = False
  67.     TabOrder = 0
  68.     object Series1: TLineSeries
  69.       Marks.ArrowLength = 8
  70.       Marks.Visible = False
  71.       SeriesColor = clRed
  72.       OnGetPointerStyle = Series1GetPointerStyle
  73.       Pointer.InflateMargins = True
  74.       Pointer.Style = psRectangle
  75.       Pointer.Visible = True
  76.       XValues.DateTime = False
  77.       XValues.Name = 'X'
  78.       XValues.Multiplier = 1.000000000000000000
  79.       XValues.Order = loAscending
  80.       YValues.DateTime = False
  81.       YValues.Name = 'Y'
  82.       YValues.Multiplier = 1.000000000000000000
  83.       YValues.Order = loNone
  84.     end
  85.   end
  86.   object Every: TScrollBar
  87.     Left = 192
  88.     Top = 280
  89.     Width = 121
  90.     Height = 18
  91.     Max = 50
  92.     Min = 1
  93.     Position = 5
  94.     TabOrder = 1
  95.     OnChange = EveryChange
  96.   end
  97.   object Button1: TButton
  98.     Left = 456
  99.     Top = 280
  100.     Width = 75
  101.     Height = 25
  102.     Caption = '&Close'
  103.     TabOrder = 2
  104.     OnClick = Button1Click
  105.   end
  106.   object StartAt: TScrollBar
  107.     Left = 192
  108.     Top = 304
  109.     Width = 121
  110.     Height = 18
  111.     Max = 50
  112.     TabOrder = 3
  113.     OnChange = EveryChange
  114.   end
  115.   object Colorize: TCheckBox
  116.     Left = 336
  117.     Top = 304
  118.     Width = 97
  119.     Height = 17
  120.     Caption = 'Colorize pointers'
  121.     State = cbChecked
  122.     TabOrder = 4
  123.     OnClick = ColorizeClick
  124.   end
  125. end
  126.