home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / OTHER / Printing better / UPRINTPR.DFM / UPRINTPR.txt
Encoding:
Text File  |  1998-10-24  |  2.2 KB  |  98 lines

  1. object Form1: TForm1
  2.   Left = 109
  3.   Top = 99
  4.   Width = 644
  5.   Height = 374
  6.   Caption = 'TeeChart-Pro -- Improve printing proportionally'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   OnCreate = FormCreate
  13.   TextHeight = 13
  14.   object Label1: TLabel
  15.     Left = 200
  16.     Top = 272
  17.     Width = 300
  18.     Height = 16
  19.     Caption = '<--  You will see the Legend text overlaps !!!'
  20.     Font.Color = clBlack
  21.     Font.Height = -13
  22.     Font.Name = 'MS Sans Serif'
  23.     Font.Style = [fsBold]
  24.     ParentFont = False
  25.   end
  26.   object Label2: TLabel
  27.     Left = 200
  28.     Top = 320
  29.     Width = 244
  30.     Height = 20
  31.     Caption = '<- Here the Legend text is ok !'
  32.     Font.Color = clBlack
  33.     Font.Height = -16
  34.     Font.Name = 'MS Sans Serif'
  35.     Font.Style = [fsBold]
  36.     ParentFont = False
  37.   end
  38.   object Button1: TButton
  39.     Left = 8
  40.     Top = 312
  41.     Width = 185
  42.     Height = 33
  43.     Caption = '2) GOOD Printing Margins'
  44.     TabOrder = 0
  45.     OnClick = Button1Click
  46.   end
  47.   object Button2: TButton
  48.     Left = 8
  49.     Top = 264
  50.     Width = 185
  51.     Height = 41
  52.     Caption = '1) BAD Printing'
  53.     TabOrder = 1
  54.     OnClick = Button2Click
  55.   end
  56.   object Button3: TButton
  57.     Left = 536
  58.     Top = 312
  59.     Width = 89
  60.     Height = 33
  61.     Caption = '&Close'
  62.     TabOrder = 2
  63.     OnClick = Button3Click
  64.   end
  65.   object Chart1: TChart
  66.     Left = 8
  67.     Top = 8
  68.     Width = 617
  69.     Height = 250
  70.     BackWall.Brush.Color = clWhite
  71.     BackWall.Brush.Style = bsClear
  72.     Title.Text.Strings = (
  73.       'TChart')
  74.     BottomAxis.EndPosition = 100.000000000000000000
  75.     LeftAxis.EndPosition = 100.000000000000000000
  76.     Legend.Font.Color = clBlack
  77.     Legend.Font.Height = -19
  78.     Legend.Font.Name = 'Arial'
  79.     Legend.Font.Style = []
  80.     RightAxis.EndPosition = 100.000000000000000000
  81.     TopAxis.EndPosition = 100.000000000000000000
  82.     TabOrder = 3
  83.     object Series1: TBarSeries
  84.       Marks.ArrowLength = 20
  85.       Marks.Visible = True
  86.       SeriesColor = clRed
  87.       XValues.DateTime = False
  88.       XValues.Name = 'X'
  89.       XValues.Multiplier = 1.000000000000000000
  90.       XValues.Order = loAscending
  91.       YValues.DateTime = False
  92.       YValues.Name = 'Bar'
  93.       YValues.Multiplier = 1.000000000000000000
  94.       YValues.Order = loNone
  95.     end
  96.   end
  97. end
  98.