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

  1. object FastDrawForm: TFastDrawForm
  2.   Left = 40
  3.   Top = 82
  4.   Width = 604
  5.   Height = 446
  6.   ActiveControl = BitBtn2
  7.   Caption = 'Fast drawing without using Series'
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   TextHeight = 13
  16.   object Chart1: TChart
  17.     Left = 8
  18.     Top = 76
  19.     Width = 577
  20.     Height = 298
  21.     BackWall.Brush.Color = clWhite
  22.     BackWall.Brush.Style = bsClear
  23.     Title.Text.Strings = (
  24.       'How To custom Draw points')
  25.     BottomAxis.EndPosition = 100.000000000000000000
  26.     LeftAxis.EndPosition = 100.000000000000000000
  27.     RightAxis.EndPosition = 100.000000000000000000
  28.     TopAxis.EndPosition = 100.000000000000000000
  29.     View3D = False
  30.     TabOrder = 0
  31.     object Series1: TFastLineSeries
  32.       Marks.ArrowLength = 8
  33.       Marks.Visible = False
  34.       SeriesColor = clRed
  35.       LinePen.Color = clRed
  36.       XValues.DateTime = False
  37.       XValues.Name = 'X'
  38.       XValues.Multiplier = 1.000000000000000000
  39.       XValues.Order = loAscending
  40.       YValues.DateTime = False
  41.       YValues.Name = 'Y'
  42.       YValues.Multiplier = 1.000000000000000000
  43.       YValues.Order = loNone
  44.     end
  45.   end
  46.   object BitBtn2: TBitBtn
  47.     Left = 8
  48.     Top = 384
  49.     Width = 249
  50.     Height = 25
  51.     Caption = 'Let'#39's Draw 25000 points !'
  52.     TabOrder = 1
  53.     OnClick = BitBtn2Click
  54.   end
  55.   object Button1: TButton
  56.     Left = 488
  57.     Top = 384
  58.     Width = 89
  59.     Height = 33
  60.     Caption = '&Close'
  61.     TabOrder = 2
  62.     OnClick = Button1Click
  63.   end
  64.   object Memo1: TMemo
  65.     Left = 8
  66.     Top = 5
  67.     Width = 577
  68.     Height = 63
  69.     Lines.Strings = (
  70.       
  71.         'This example shows how to use the Chart Canvas property to draw ' +
  72.         'custom lines using the Chart axis, '
  73.       'but without using any Series component.'
  74.       
  75.         'It shows how to use the Axis methods to convert from user scales' +
  76.         ' to screen pixels.'
  77.       
  78.         'Also shows the speed of using this method, drawing many lines su' +
  79.         'per-fast.'
  80.       '')
  81.     TabOrder = 3
  82.   end
  83. end
  84.