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

  1. object AlignChartsForm: TAlignChartsForm
  2.   Left = 211
  3.   Top = 32
  4.   BorderStyle = bsDialog
  5.   Caption = 'TeeChart-Pro. How to align Charts'
  6.   ClientHeight = 473
  7.   ClientWidth = 465
  8.   Font.Color = clBlack
  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 = 232
  19.     Top = 8
  20.     Width = 129
  21.     Height = 41
  22.     Caption = 'Aligned Charts?'
  23.     Columns = 2
  24.     ItemIndex = 0
  25.     Items.Strings = (
  26.       '&Yes'
  27.       '&No')
  28.     TabOrder = 0
  29.     OnClick = RadioGroup1Click
  30.   end
  31.   object Chart1: TChart
  32.     Left = 8
  33.     Top = 64
  34.     Width = 441
  35.     Height = 194
  36.     BackWall.Brush.Color = clWhite
  37.     BackWall.Brush.Style = bsClear
  38.     MarginBottom = 1
  39.     Title.Text.Strings = (
  40.       'Chart 1')
  41.     LeftAxis.LabelsFont.Color = clBlack
  42.     LeftAxis.LabelsFont.Height = -15
  43.     LeftAxis.LabelsFont.Name = 'Arial'
  44.     LeftAxis.LabelsFont.Style = [fsItalic]
  45.     Legend.Visible = False
  46.     View3D = False
  47.     BevelOuter = bvNone
  48.     TabOrder = 1
  49.     object Series1: TFastLineSeries
  50.       HorizAxis = aTopAxis
  51.       Marks.ArrowLength = 8
  52.       Marks.Visible = False
  53.       SeriesColor = clRed
  54.       LinePen.Color = clRed
  55.       XValues.DateTime = False
  56.       XValues.Name = 'X'
  57.       XValues.Multiplier = 1.000000000000000000
  58.       XValues.Order = loAscending
  59.       YValues.DateTime = False
  60.       YValues.Name = 'Y'
  61.       YValues.Multiplier = 1.000000000000000000
  62.       YValues.Order = loNone
  63.     end
  64.   end
  65.   object Chart2: TChart
  66.     Left = 8
  67.     Top = 257
  68.     Width = 441
  69.     Height = 201
  70.     BackWall.Brush.Color = clWhite
  71.     BackWall.Brush.Style = bsClear
  72.     Foot.Text.Strings = (
  73.       'Chart 2')
  74.     MarginTop = 1
  75.     Title.Text.Strings = (
  76.       'Chart 1')
  77.     Title.Visible = False
  78.     LeftAxis.LabelsFont.Color = clBlack
  79.     LeftAxis.LabelsFont.Height = -12
  80.     LeftAxis.LabelsFont.Name = 'Arial'
  81.     LeftAxis.LabelsFont.Style = [fsBold]
  82.     Legend.Visible = False
  83.     View3D = False
  84.     BevelOuter = bvNone
  85.     TabOrder = 2
  86.     object Series2: TFastLineSeries
  87.       Marks.ArrowLength = 8
  88.       Marks.Visible = False
  89.       SeriesColor = clRed
  90.       LinePen.Color = clRed
  91.       XValues.DateTime = False
  92.       XValues.Name = 'X'
  93.       XValues.Multiplier = 1.000000000000000000
  94.       XValues.Order = loAscending
  95.       YValues.DateTime = False
  96.       YValues.Name = 'Y'
  97.       YValues.Multiplier = 1.000000000000000000
  98.       YValues.Order = loNone
  99.     end
  100.   end
  101.   object Button1: TButton
  102.     Left = 376
  103.     Top = 16
  104.     Width = 75
  105.     Height = 25
  106.     Caption = '&Close'
  107.     TabOrder = 3
  108.     OnClick = Button1Click
  109.   end
  110.   object Memo1: TMemo
  111.     Left = 8
  112.     Top = 8
  113.     Width = 209
  114.     Height = 49
  115.     Lines.Strings = (
  116.       'This project shows how to make two or'
  117.       'more Charts in the same Form aligned'
  118.       'vertically or horizontally.'
  119.       '')
  120.     TabOrder = 4
  121.   end
  122. end
  123.