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

  1. object BasicMultipleAxes: TBasicMultipleAxes
  2.   Left = 192
  3.   Top = 89
  4.   Width = 604
  5.   Height = 478
  6.   Caption = 'TeeChart Pro - Basic Multiple Axes Example'
  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.   OnShow = FormShow
  16.   TextHeight = 13
  17.   object Chart1: TChart
  18.     Left = 185
  19.     Top = 123
  20.     Width = 411
  21.     Height = 328
  22.     BackWall.Brush.Color = clWhite
  23.     BackWall.Brush.Style = bsClear
  24.     Gradient.Direction = gdFromBottomLeft
  25.     MarginLeft = 10
  26.     MarginRight = 15
  27.     MarginTop = 20
  28.     Title.Text.Strings = (
  29.       'TChart')
  30.     Title.Visible = False
  31.     BottomAxis.EndPosition = 100.000000000000000000
  32.     LeftAxis.EndPosition = 100.000000000000000000
  33.     Legend.Alignment = laBottom
  34.     Legend.ColorWidth = 20
  35.     Legend.HorizMargin = 43
  36.     RightAxis.EndPosition = 100.000000000000000000
  37.     TopAxis.EndPosition = 100.000000000000000000
  38.     View3D = False
  39.     Align = alClient
  40.     TabOrder = 0
  41.     object Series1: TFastLineSeries
  42.       Marks.ArrowLength = 8
  43.       Marks.Visible = False
  44.       SeriesColor = clRed
  45.       LinePen.Color = clRed
  46.       XValues.DateTime = False
  47.       XValues.Name = 'X'
  48.       XValues.Multiplier = 1.000000000000000000
  49.       XValues.Order = loAscending
  50.       YValues.DateTime = False
  51.       YValues.Name = 'Y'
  52.       YValues.Multiplier = 1.000000000000000000
  53.       YValues.Order = loNone
  54.     end
  55.     object Series2: TFastLineSeries
  56.       Marks.ArrowLength = 8
  57.       Marks.Visible = False
  58.       SeriesColor = clGreen
  59.       LinePen.Color = clGreen
  60.       XValues.DateTime = False
  61.       XValues.Name = 'X'
  62.       XValues.Multiplier = 1.000000000000000000
  63.       XValues.Order = loAscending
  64.       YValues.DateTime = False
  65.       YValues.Name = 'Y'
  66.       YValues.Multiplier = 1.000000000000000000
  67.       YValues.Order = loNone
  68.     end
  69.     object Series3: TFastLineSeries
  70.       Marks.ArrowLength = 8
  71.       Marks.Visible = False
  72.       SeriesColor = clFuchsia
  73.       LinePen.Color = clFuchsia
  74.       XValues.DateTime = False
  75.       XValues.Name = 'X'
  76.       XValues.Multiplier = 1.000000000000000000
  77.       XValues.Order = loAscending
  78.       YValues.DateTime = False
  79.       YValues.Name = 'Y'
  80.       YValues.Multiplier = 1.000000000000000000
  81.       YValues.Order = loNone
  82.     end
  83.     object Series4: TFastLineSeries
  84.       Marks.ArrowLength = 8
  85.       Marks.Visible = False
  86.       SeriesColor = clBlue
  87.       LinePen.Color = clBlue
  88.       XValues.DateTime = False
  89.       XValues.Name = 'X'
  90.       XValues.Multiplier = 1.000000000000000000
  91.       XValues.Order = loAscending
  92.       YValues.DateTime = False
  93.       YValues.Name = 'Y'
  94.       YValues.Multiplier = 1.000000000000000000
  95.       YValues.Order = loNone
  96.     end
  97.     object Series5: TFastLineSeries
  98.       Marks.ArrowLength = 8
  99.       Marks.Visible = False
  100.       SeriesColor = clLime
  101.       LinePen.Color = clLime
  102.       XValues.DateTime = False
  103.       XValues.Name = 'X'
  104.       XValues.Multiplier = 1.000000000000000000
  105.       XValues.Order = loAscending
  106.       YValues.DateTime = False
  107.       YValues.Name = 'Y'
  108.       YValues.Multiplier = 1.000000000000000000
  109.       YValues.Order = loNone
  110.     end
  111.   end
  112.   object Panel1: TPanel
  113.     Left = 0
  114.     Top = 0
  115.     Width = 596
  116.     Height = 90
  117.     Align = alTop
  118.     TabOrder = 1
  119.     object Button1: TButton
  120.       Left = 504
  121.       Top = 56
  122.       Width = 75
  123.       Height = 25
  124.       Caption = 'Close'
  125.       TabOrder = 0
  126.       OnClick = Button1Click
  127.     end
  128.     object Memo1: TMemo
  129.       Left = 8
  130.       Top = 8
  131.       Width = 377
  132.       Height = 74
  133.       Lines.Strings = (
  134.         'In this Chart there are 10 axes. (5 Horizontal and 5 Vertical).'
  135.         'There are also 5 Series, that are associated with the 10 axes.'
  136.         ''
  137.         'Every axis is independent and can be fully customized.'
  138.         'Axis position and ranges are controlled with simple properties.'
  139.         'Drag axes by mouse to move them.')
  140.       TabOrder = 1
  141.     end
  142.     object Button2: TButton
  143.       Left = 400
  144.       Top = 56
  145.       Width = 75
  146.       Height = 25
  147.       Caption = '&Random !'
  148.       TabOrder = 2
  149.       OnClick = Button2Click
  150.     end
  151.     object CBGrid: TCheckBox
  152.       Left = 400
  153.       Top = 16
  154.       Width = 97
  155.       Height = 17
  156.       Caption = '&Grids'
  157.       State = cbChecked
  158.       TabOrder = 3
  159.       OnClick = CBGridClick
  160.     end
  161.   end
  162.   object Panel2: TPanel
  163.     Left = 0
  164.     Top = 123
  165.     Width = 185
  166.     Height = 328
  167.     Align = alLeft
  168.     TabOrder = 2
  169.     object Label1: TLabel
  170.       Left = 21
  171.       Top = 216
  172.       Width = 25
  173.       Height = 13
  174.       Caption = '&Start:'
  175.     end
  176.     object Label2: TLabel
  177.       Left = 24
  178.       Top = 240
  179.       Width = 22
  180.       Height = 13
  181.       Caption = '&End:'
  182.     end
  183.     object Label3: TLabel
  184.       Left = 8
  185.       Top = 272
  186.       Width = 40
  187.       Height = 13
  188.       Caption = '&Position:'
  189.     end
  190.     object TCheckBox
  191.       Left = 1
  192.       Top = 1
  193.       Width = 12
  194.       Height = 12
  195.       TabOrder = 7
  196.     end
  197.     object TCheckBox
  198.       Left = 1
  199.       Top = 1
  200.       Width = 12
  201.       Height = 12
  202.       State = cbChecked
  203.       TabOrder = 6
  204.     end
  205.     object ChartListBox1: TChartListBox
  206.       Left = 1
  207.       Top = 1
  208.       Width = 183
  209.       Height = 140
  210.       Chart = Chart1
  211.       OnOtherItemsChange = ChartListBox1OtherItemsChange
  212.       Align = alTop
  213.       Color = clSilver
  214.       MultiSelect = True
  215.       TabOrder = 0
  216.     end
  217.     object ScrollBar1: TScrollBar
  218.       Left = 56
  219.       Top = 216
  220.       Width = 121
  221.       Height = 16
  222.       TabOrder = 1
  223.       OnChange = ScrollBar1Change
  224.     end
  225.     object ScrollBar2: TScrollBar
  226.       Left = 56
  227.       Top = 240
  228.       Width = 121
  229.       Height = 16
  230.       TabOrder = 2
  231.       OnChange = ScrollBar2Change
  232.     end
  233.     object ScrollBar3: TScrollBar
  234.       Left = 56
  235.       Top = 272
  236.       Width = 121
  237.       Height = 16
  238.       Min = -100
  239.       TabOrder = 3
  240.       OnChange = ScrollBar3Change
  241.     end
  242.     object RGAxis: TRadioGroup
  243.       Left = 12
  244.       Top = 150
  245.       Width = 161
  246.       Height = 33
  247.       Caption = 'Axis:'
  248.       Columns = 2
  249.       ItemIndex = 0
  250.       Items.Strings = (
  251.         '&Horizontal'
  252.         '&Vertical')
  253.       TabOrder = 5
  254.       OnClick = RGAxisClick
  255.     end
  256.     object CBOtherSide: TCheckBox
  257.       Left = 56
  258.       Top = 296
  259.       Width = 113
  260.       Height = 17
  261.       Caption = '&Other side Labels'
  262.       TabOrder = 4
  263.     end
  264.   end
  265.   object TeeCommander1: TTeeCommander
  266.     Left = 0
  267.     Top = 90
  268.     Width = 596
  269.     Height = 33
  270.     OnChartMouseDown = TeeCommander1ChartMouseDown
  271.     OnChartMouseMove = TeeCommander1ChartMouseMove
  272.     OnChartMouseUp = TeeCommander1ChartMouseUp
  273.     Panel = Chart1
  274.     Align = alTop
  275.     TabOrder = 3
  276.   end
  277. end
  278.