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

  1. object CustomLabelsForm: TCustomLabelsForm
  2.   Left = 173
  3.   Top = 48
  4.   Width = 542
  5.   Height = 443
  6.   Caption = 'Custom Axis Labels Example'
  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 = 0
  18.     Top = 97
  19.     Width = 534
  20.     Height = 319
  21.     BackWall.Brush.Color = clWhite
  22.     BackWall.Brush.Style = bsClear
  23.     Gradient.Direction = gdLeftRight
  24.     Gradient.Visible = True
  25.     Title.Text.Strings = (
  26.       'TChart')
  27.     BottomAxis.Logarithmic = True
  28.     BottomAxis.EndPosition = 100.000000000000000000
  29.     LeftAxis.Logarithmic = True
  30.     LeftAxis.EndPosition = 100.000000000000000000
  31.     RightAxis.EndPosition = 100.000000000000000000
  32.     TopAxis.EndPosition = 100.000000000000000000
  33.     View3D = False
  34.     Align = alClient
  35.     TabOrder = 0
  36.     object Series1: TFastLineSeries
  37.       ColorEachPoint = True
  38.       Marks.ArrowLength = 8
  39.       Marks.Visible = False
  40.       SeriesColor = clRed
  41.       LinePen.Color = clRed
  42.       LinePen.Width = 2
  43.       XValues.DateTime = False
  44.       XValues.Name = 'X'
  45.       XValues.Multiplier = 1.000000000000000000
  46.       XValues.Order = loAscending
  47.       YValues.DateTime = False
  48.       YValues.Name = 'Y'
  49.       YValues.Multiplier = 1.000000000000000000
  50.       YValues.Order = loNone
  51.     end
  52.   end
  53.   object Panel1: TPanel
  54.     Left = 0
  55.     Top = 0
  56.     Width = 534
  57.     Height = 97
  58.     Align = alTop
  59.     TabOrder = 1
  60.     object BitBtn2: TBitBtn
  61.       Left = 434
  62.       Top = 12
  63.       Width = 89
  64.       Height = 33
  65.       Caption = 'Close'
  66.       TabOrder = 0
  67.       Kind = bkClose
  68.     end
  69.     object Memo1: TMemo
  70.       Left = 10
  71.       Top = 11
  72.       Width = 407
  73.       Height = 73
  74.       Lines.Strings = (
  75.         
  76.           'Axis Labels can be customized using events. The number of labels' +
  77.           ' '
  78.         
  79.           'and each label text,  font and position can be specified using t' +
  80.           'he'
  81.         'OnGetNextAxisLabel and OnGetAxisLabel events.'
  82.         'It'#39's intended for complex logarithmic or linear axes labelling.'
  83.         ''
  84.         '')
  85.       TabOrder = 1
  86.     end
  87.   end
  88. end
  89.