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

  1. object FormMoveBars: TFormMoveBars
  2.   Left = 125
  3.   Top = 118
  4.   Width = 624
  5.   Height = 319
  6.   ActiveControl = ScrollBar1
  7.   Caption = 'TeeChart Pro  -- Customizing Bar series Widths and Moving Bars'
  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 = 248
  20.     Width = 83
  21.     Height = 13
  22.     Caption = 'Bar widh percent:'
  23.   end
  24.   object Label2: TLabel
  25.     Left = 224
  26.     Top = 248
  27.     Width = 20
  28.     Height = 13
  29.     Caption = '70%'
  30.   end
  31.   object Label3: TLabel
  32.     Left = 24
  33.     Top = 272
  34.     Width = 66
  35.     Height = 13
  36.     Caption = 'Custom width:'
  37.   end
  38.   object Label4: TLabel
  39.     Left = 224
  40.     Top = 272
  41.     Width = 27
  42.     Height = 13
  43.     Caption = '(auto)'
  44.   end
  45.   object Label5: TLabel
  46.     Left = 376
  47.     Top = 256
  48.     Width = 156
  49.     Height = 13
  50.     Caption = 'Left mouse: Click and drag Bars !'
  51.   end
  52.   object Label6: TLabel
  53.     Left = 376
  54.     Top = 272
  55.     Width = 128
  56.     Height = 13
  57.     Caption = 'Right mouse: Scroll all Bars'
  58.   end
  59.   object Chart1: TChart
  60.     Left = 4
  61.     Top = 2
  62.     Width = 605
  63.     Height = 239
  64.     AllowZoom = False
  65.     BackWall.Brush.Color = clWhite
  66.     BackWall.Brush.Style = bsClear
  67.     Title.Text.Strings = (
  68.       'TChart')
  69.     BottomAxis.EndPosition = 100.000000000000000000
  70.     LeftAxis.EndPosition = 100.000000000000000000
  71.     Legend.Visible = False
  72.     RightAxis.EndPosition = 100.000000000000000000
  73.     TopAxis.EndPosition = 100.000000000000000000
  74.     View3D = False
  75.     OnGetAxisLabel = Chart1GetAxisLabel
  76.     TabOrder = 0
  77.     OnMouseDown = Chart1MouseDown
  78.     OnMouseMove = Chart1MouseMove
  79.     OnMouseUp = Chart1MouseUp
  80.     object Series1: TBarSeries
  81.       Cursor = 2020
  82.       Marks.ArrowLength = 20
  83.       Marks.Visible = True
  84.       SeriesColor = clRed
  85.       XValues.DateTime = False
  86.       XValues.Name = 'X'
  87.       XValues.Multiplier = 1.000000000000000000
  88.       XValues.Order = loAscending
  89.       YValues.DateTime = False
  90.       YValues.Name = 'Bar'
  91.       YValues.Multiplier = 1.000000000000000000
  92.       YValues.Order = loNone
  93.     end
  94.     object Series2: TFastLineSeries
  95.       Marks.ArrowLength = 8
  96.       Marks.Visible = False
  97.       SeriesColor = clGreen
  98.       LinePen.Color = clGreen
  99.       XValues.DateTime = False
  100.       XValues.Name = 'X'
  101.       XValues.Multiplier = 1.000000000000000000
  102.       XValues.Order = loAscending
  103.       YValues.DateTime = False
  104.       YValues.Name = 'Y'
  105.       YValues.Multiplier = 1.000000000000000000
  106.       YValues.Order = loNone
  107.     end
  108.   end
  109.   object CheckBox1: TCheckBox
  110.     Left = 280
  111.     Top = 248
  112.     Width = 89
  113.     Height = 17
  114.     Caption = 'Side Margins'
  115.     State = cbChecked
  116.     TabOrder = 1
  117.     OnClick = CheckBox1Click
  118.   end
  119.   object ScrollBar1: TScrollBar
  120.     Left = 96
  121.     Top = 248
  122.     Width = 121
  123.     Height = 18
  124.     Min = 1
  125.     Position = 1
  126.     TabOrder = 2
  127.     OnChange = ScrollBar1Change
  128.   end
  129.   object ScrollBar2: TScrollBar
  130.     Left = 96
  131.     Top = 272
  132.     Width = 121
  133.     Height = 18
  134.     TabOrder = 3
  135.     OnChange = ScrollBar2Change
  136.   end
  137.   object Button1: TButton
  138.     Left = 544
  139.     Top = 264
  140.     Width = 65
  141.     Height = 25
  142.     Caption = '&Close'
  143.     TabOrder = 4
  144.     OnClick = Button1Click
  145.   end
  146.   object CheckBox2: TCheckBox
  147.     Left = 280
  148.     Top = 272
  149.     Width = 65
  150.     Height = 17
  151.     Caption = '&View 3D'
  152.     TabOrder = 5
  153.     OnClick = CheckBox2Click
  154.   end
  155. end
  156.