home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / DEMOS / TEECHART / UAXISLAB.DFM / UAXISLAB.txt
Text File  |  1998-06-16  |  3KB  |  131 lines

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