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

  1. object AxisCenterForm: TAxisCenterForm
  2.   Left = 95
  3.   Top = 48
  4.   Width = 537
  5.   Height = 422
  6.   BorderIcons = [biSystemMenu]
  7.   Caption = 'TeeChart-Pro --- Centering Axis'
  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 RadioGroup1: TRadioGroup
  18.     Left = 8
  19.     Top = 288
  20.     Width = 249
  21.     Height = 42
  22.     Caption = 'Horizontal Axis:'
  23.     Columns = 3
  24.     ItemIndex = 1
  25.     Items.Strings = (
  26.       'Top'
  27.       'Center'
  28.       'Bottom')
  29.     TabOrder = 0
  30.     OnClick = RadioGroup1Click
  31.   end
  32.   object Chart1: TChart
  33.     Left = 4
  34.     Top = 2
  35.     Width = 517
  36.     Height = 279
  37.     BackWall.Brush.Color = clWhite
  38.     BackWall.Brush.Style = bsClear
  39.     BackWall.Pen.Visible = False
  40.     Title.Text.Strings = (
  41.       'TChart')
  42.     OnClickAxis = Chart1ClickAxis
  43.     BottomAxis.EndPosition = 100.000000000000000000
  44.     Frame.Visible = False
  45.     LeftAxis.EndPosition = 100.000000000000000000
  46.     RightAxis.EndPosition = 100.000000000000000000
  47.     TopAxis.EndPosition = 100.000000000000000000
  48.     View3D = False
  49.     DragMode = dmAutomatic
  50.     TabOrder = 1
  51.     OnDragDrop = Chart1DragDrop
  52.     OnDragOver = Chart1DragOver
  53.     OnMouseMove = Chart1MouseMove
  54.     object Series1: TLineSeries
  55.       Marks.ArrowLength = 8
  56.       Marks.Visible = False
  57.       SeriesColor = clRed
  58.       Pointer.InflateMargins = True
  59.       Pointer.Style = psRectangle
  60.       Pointer.Visible = False
  61.       XValues.DateTime = False
  62.       XValues.Name = 'X'
  63.       XValues.Multiplier = 1.000000000000000000
  64.       XValues.Order = loAscending
  65.       YValues.DateTime = False
  66.       YValues.Name = 'Y'
  67.       YValues.Multiplier = 1.000000000000000000
  68.       YValues.Order = loNone
  69.     end
  70.   end
  71.   object Button1: TButton
  72.     Left = 432
  73.     Top = 352
  74.     Width = 89
  75.     Height = 33
  76.     Caption = '&Close'
  77.     TabOrder = 2
  78.     OnClick = Button1Click
  79.   end
  80.   object RadioGroup2: TRadioGroup
  81.     Left = 8
  82.     Top = 344
  83.     Width = 249
  84.     Height = 42
  85.     Caption = 'Vertical Axis:'
  86.     Columns = 3
  87.     ItemIndex = 0
  88.     Items.Strings = (
  89.       'Left'
  90.       'Center'
  91.       'Right')
  92.     TabOrder = 3
  93.     OnClick = RadioGroup2Click
  94.   end
  95.   object CheckBox1: TCheckBox
  96.     Left = 280
  97.     Top = 304
  98.     Width = 177
  99.     Height = 17
  100.     Caption = 'Draw axes before Series'
  101.     State = cbChecked
  102.     TabOrder = 4
  103.     OnClick = CheckBox1Click
  104.   end
  105. end
  106.