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

  1. object CandleWeekForm: TCandleWeekForm
  2.   Left = 106
  3.   Top = 101
  4.   Width = 549
  5.   Height = 387
  6.   Caption = 'TeeChart Pro -- Example project using Candle Series'
  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 Chart1: TChart
  15.     Left = 8
  16.     Top = 8
  17.     Width = 521
  18.     Height = 241
  19.     BackWall.Brush.Color = clWhite
  20.     BackWall.Color = clWhite
  21.     Title.Font.Color = clBlue
  22.     Title.Font.Height = -16
  23.     Title.Font.Name = 'Arial'
  24.     Title.Font.Style = []
  25.     Title.Text.Strings = (
  26.       'TChart')
  27.     Title.Visible = False
  28.     BackColor = clWhite
  29.     BottomAxis.EndPosition = 100.000000000000000000
  30.     Chart3DPercent = 7
  31.     LeftAxis.EndPosition = 100.000000000000000000
  32.     Legend.Visible = False
  33.     RightAxis.EndPosition = 100.000000000000000000
  34.     TopAxis.EndPosition = 100.000000000000000000
  35.     OnGetAxisLabel = Chart1GetAxisLabel
  36.     TabOrder = 0
  37.     object Series1: TCandleSeries
  38.       Marks.ArrowLength = 8
  39.       Marks.Visible = False
  40.       SeriesColor = clRed
  41.       BeforeDrawValues = Series1BeforeDrawValues
  42.       CloseValues.DateTime = False
  43.       CloseValues.Name = 'Close'
  44.       CloseValues.Multiplier = 1.000000000000000000
  45.       CloseValues.Order = loNone
  46.       DateValues.DateTime = True
  47.       DateValues.Name = 'Date'
  48.       DateValues.Multiplier = 1.000000000000000000
  49.       DateValues.Order = loAscending
  50.       HighValues.DateTime = False
  51.       HighValues.Name = 'High'
  52.       HighValues.Multiplier = 1.000000000000000000
  53.       HighValues.Order = loNone
  54.       LowValues.DateTime = False
  55.       LowValues.Name = 'Low'
  56.       LowValues.Multiplier = 1.000000000000000000
  57.       LowValues.Order = loNone
  58.       OpenValues.DateTime = False
  59.       OpenValues.Name = 'Open'
  60.       OpenValues.Multiplier = 1.000000000000000000
  61.       OpenValues.Order = loNone
  62.       Draw3D = True
  63.       DownCloseColor = 16777088
  64.       UpCloseColor = 8454143
  65.     end
  66.   end
  67.   object Button1: TButton
  68.     Left = 456
  69.     Top = 328
  70.     Width = 75
  71.     Height = 25
  72.     Caption = 'Close'
  73.     TabOrder = 1
  74.     OnClick = Button1Click
  75.   end
  76.   object RadioGroup1: TRadioGroup
  77.     Left = 8
  78.     Top = 256
  79.     Width = 241
  80.     Height = 97
  81.     Caption = 'Date format:'
  82.     Columns = 2
  83.     ItemIndex = 0
  84.     Items.Strings = (
  85.       'Day of week'
  86.       'Day of week num.'
  87.       'Day of month'
  88.       'dd-mm-yy'
  89.       'mmm-dd')
  90.     TabOrder = 2
  91.     OnClick = RadioGroup1Click
  92.   end
  93.   object Memo1: TMemo
  94.     Left = 264
  95.     Top = 256
  96.     Width = 65
  97.     Height = 97
  98.     Lines.Strings = (
  99.       'Memo1')
  100.     TabOrder = 3
  101.   end
  102. end
  103.