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

  1. object FormPrintBitmap: TFormPrintBitmap
  2.   Left = 200
  3.   Top = 105
  4.   Width = 431
  5.   Height = 331
  6.   Caption = 'Printing a Chart using a Bitmap...'
  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.   TextHeight = 13
  16.   object Chart1: TChart
  17.     Left = 12
  18.     Top = 10
  19.     Width = 400
  20.     Height = 250
  21.     BackWall.Brush.Color = clWhite
  22.     BackWall.Brush.Style = bsClear
  23.     Title.Text.Strings = (
  24.       'TChart')
  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: TBarSeries
  32.       ColorEachPoint = True
  33.       Marks.ArrowLength = 8
  34.       Marks.Visible = False
  35.       SeriesColor = 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 = 'Bar'
  42.       YValues.Multiplier = 1.000000000000000000
  43.       YValues.Order = loNone
  44.     end
  45.   end
  46.   object BitBtn2: TBitBtn
  47.     Left = 24
  48.     Top = 272
  49.     Width = 161
  50.     Height = 25
  51.     Caption = 'Print as bitmap'
  52.     TabOrder = 1
  53.     OnClick = BitBtn2Click
  54.   end
  55.   object Button1: TButton
  56.     Left = 328
  57.     Top = 272
  58.     Width = 89
  59.     Height = 25
  60.     Caption = '&Close'
  61.     TabOrder = 2
  62.     OnClick = Button1Click
  63.   end
  64. end
  65.