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

  1. object CustomGalleryForm: TCustomGalleryForm
  2.   Left = 200
  3.   Top = 96
  4.   ActiveControl = Button1
  5.   BorderStyle = bsDialog
  6.   Caption = 'TeeChart-Pro - How to customize the Chart Gallery'
  7.   ClientHeight = 311
  8.   ClientWidth = 363
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   Scaled = False
  16.   OnCreate = FormCreate
  17.   TextHeight = 13
  18.   object Chart1: TChart
  19.     Left = 8
  20.     Top = 8
  21.     Width = 345
  22.     Height = 193
  23.     BackWall.Brush.Color = clWhite
  24.     BackWall.Brush.Style = bsClear
  25.     Title.Text.Strings = (
  26.       'TChart')
  27.     BottomAxis.EndPosition = 100.000000000000000000
  28.     LeftAxis.EndPosition = 100.000000000000000000
  29.     RightAxis.EndPosition = 100.000000000000000000
  30.     TopAxis.EndPosition = 100.000000000000000000
  31.     TabOrder = 0
  32.     object Series1: TPointSeries
  33.       Marks.ArrowLength = 8
  34.       Marks.Visible = False
  35.       SeriesColor = clRed
  36.       Pointer.InflateMargins = True
  37.       Pointer.Style = psRectangle
  38.       Pointer.Visible = True
  39.       XValues.DateTime = False
  40.       XValues.Name = 'X'
  41.       XValues.Multiplier = 1.000000000000000000
  42.       XValues.Order = loAscending
  43.       YValues.DateTime = False
  44.       YValues.Name = 'Y'
  45.       YValues.Multiplier = 1.000000000000000000
  46.       YValues.Order = loNone
  47.     end
  48.   end
  49.   object Button1: TButton
  50.     Left = 8
  51.     Top = 272
  52.     Width = 233
  53.     Height = 33
  54.     Caption = 'Click to show a Custom &Gallery'
  55.     TabOrder = 1
  56.     OnClick = Button1Click
  57.   end
  58.   object Button2: TButton
  59.     Left = 264
  60.     Top = 272
  61.     Width = 89
  62.     Height = 33
  63.     Caption = '&Close'
  64.     TabOrder = 2
  65.     OnClick = Button2Click
  66.   end
  67.   object Show3D: TCheckBox
  68.     Left = 8
  69.     Top = 216
  70.     Width = 97
  71.     Height = 17
  72.     Caption = '&Show in 3D'
  73.     State = cbChecked
  74.     TabOrder = 3
  75.   end
  76.   object ShowFunctions: TCheckBox
  77.     Left = 8
  78.     Top = 240
  79.     Width = 137
  80.     Height = 17
  81.     Caption = 'Show &Functions'
  82.     State = cbChecked
  83.     TabOrder = 4
  84.   end
  85.   object ShowDefault: TCheckBox
  86.     Left = 168
  87.     Top = 216
  88.     Width = 145
  89.     Height = 17
  90.     Caption = 'Show &Default Series'
  91.     State = cbChecked
  92.     TabOrder = 5
  93.   end
  94. end
  95.