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

  1. object AxisLabelsForm: TAxisLabelsForm
  2.   Left = 94
  3.   Top = 52
  4.   Width = 548
  5.   Height = 451
  6.   ActiveControl = RadioGroup1
  7.   Caption = 'TeeChart Sample Project.  Custom Axis Labeling'
  8.   Font.Color = clBlack
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   Position = poScreenCenter
  14.   Scaled = False
  15.   OnCreate = FormCreate
  16.   TextHeight = 13
  17.   object Chart1: TChart
  18.     Left = 153
  19.     Top = 0
  20.     Width = 387
  21.     Height = 424
  22.     BackWall.Brush.Color = clWhite
  23.     BackWall.Brush.Style = bsClear
  24.     Foot.Frame.Color = clScrollBar
  25.     Title.Frame.Color = clScrollBar
  26.     Title.Text.Strings = (
  27.       'TChart Component')
  28.     BottomAxis.LabelsFont.Color = clMaroon
  29.     BottomAxis.LabelsFont.Height = -21
  30.     BottomAxis.LabelsFont.Name = 'Arial'
  31.     BottomAxis.LabelsFont.Style = [fsBold, fsItalic]
  32.     BottomAxis.EndPosition = 100.000000000000000000
  33.     LeftAxis.LabelsFont.Color = clNavy
  34.     LeftAxis.LabelsFont.Height = -24
  35.     LeftAxis.LabelsFont.Name = 'Arial'
  36.     LeftAxis.LabelsFont.Style = [fsBold, fsItalic]
  37.     LeftAxis.EndPosition = 100.000000000000000000
  38.     Legend.Alignment = laBottom
  39.     RightAxis.EndPosition = 100.000000000000000000
  40.     TopAxis.EndPosition = 100.000000000000000000
  41.     OnGetNextAxisLabel = Chart1GetNextAxisLabel
  42.     Align = alClient
  43.     TabOrder = 0
  44.     object LineSeries1: TLineSeries
  45.       Marks.ArrowLength = 8
  46.       Marks.Visible = False
  47.       SeriesColor = clRed
  48.       Pointer.InflateMargins = True
  49.       Pointer.Style = psRectangle
  50.       Pointer.Visible = False
  51.       XValues.DateTime = True
  52.       XValues.Name = 'X'
  53.       XValues.Multiplier = 1.000000000000000000
  54.       XValues.Order = loAscending
  55.       YValues.DateTime = False
  56.       YValues.Name = 'Y'
  57.       YValues.Multiplier = 1.000000000000000000
  58.       YValues.Order = loNone
  59.       Left = 199
  60.       Top = 122
  61.     end
  62.     object PointSeries1: TPointSeries
  63.       Marks.ArrowLength = 8
  64.       Marks.Visible = False
  65.       SeriesColor = clGreen
  66.       Pointer.InflateMargins = True
  67.       Pointer.Style = psRectangle
  68.       Pointer.Visible = True
  69.       XValues.DateTime = True
  70.       XValues.Name = 'X'
  71.       XValues.Multiplier = 1.000000000000000000
  72.       XValues.Order = loAscending
  73.       YValues.DateTime = False
  74.       YValues.Name = 'Y'
  75.       YValues.Multiplier = 1.000000000000000000
  76.       YValues.Order = loNone
  77.       Left = 283
  78.       Top = 132
  79.     end
  80.   end
  81.   object Panel1: TPanel
  82.     Left = 0
  83.     Top = 0
  84.     Width = 153
  85.     Height = 424
  86.     Align = alLeft
  87.     TabOrder = 1
  88.     object RadioGroup1: TRadioGroup
  89.       Left = 17
  90.       Top = 16
  91.       Width = 120
  92.       Height = 57
  93.       Caption = 'Choose Axis Labels:'
  94.       ItemIndex = 1
  95.       Items.Strings = (
  96.         'Default'
  97.         'User defined')
  98.       TabOrder = 0
  99.       OnClick = RadioGroup1Click
  100.     end
  101.     object BitBtn3: TBitBtn
  102.       Left = 32
  103.       Top = 328
  104.       Width = 89
  105.       Height = 33
  106.       TabOrder = 1
  107.       Kind = bkClose
  108.     end
  109.     object Memo1: TMemo
  110.       Left = 16
  111.       Top = 96
  112.       Width = 121
  113.       Height = 193
  114.       Lines.Strings = (
  115.         'This example shows '
  116.         'how Axis labels can be '
  117.         'customized, '
  118.         'both their position and '
  119.         'text using '
  120.         'OnGetAxisLabel and'
  121.         'OnGetNextAxisLabel '
  122.         'events.'
  123.         ''
  124.         'In this example Bottom '
  125.         'axis labels are set to the '
  126.         'starting day of each'
  127.         'month.')
  128.       TabOrder = 2
  129.     end
  130.   end
  131. end
  132.