home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / OTHER / MONTHLY / BYMONTH.DFM / BYMONTH.txt
Encoding:
Text File  |  1998-10-24  |  2.9 KB  |  142 lines

  1. object FormMonthly: TFormMonthly
  2.   Left = 172
  3.   Top = 112
  4.   Width = 558
  5.   Height = 415
  6.   ActiveControl = RadioGroup1
  7.   Caption = 'Monthly and Weekly Database Charts'
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   Scaled = False
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Chart1: TChart
  19.     Left = 0
  20.     Top = 81
  21.     Width = 550
  22.     Height = 307
  23.     BackWall.Brush.Color = clWhite
  24.     BackWall.Brush.Style = bsClear
  25.     Title.Text.Strings = (
  26.       'TChart')
  27.     BottomAxis.DateTimeFormat = 'MM/yy'
  28.     Legend.Visible = False
  29.     Align = alClient
  30.     TabOrder = 0
  31.     object Series1: TBarSeries
  32.       Marks.ArrowLength = 20
  33.       Marks.Style = smsValue
  34.       Marks.Visible = True
  35.       SeriesColor = clRed
  36.       ValueFormat = '#,##0'
  37.       XValues.DateTime = False
  38.       XValues.Name = 'X'
  39.       XValues.Multiplier = 1.000000000000000000
  40.       XValues.Order = loAscending
  41.       YValues.DateTime = False
  42.       YValues.Name = 'Bar'
  43.       YValues.Multiplier = 1.000000000000000000
  44.       YValues.Order = loNone
  45.     end
  46.   end
  47.   object Panel1: TPanel
  48.     Left = 0
  49.     Top = 0
  50.     Width = 550
  51.     Height = 81
  52.     Align = alTop
  53.     TabOrder = 1
  54.     object Label1: TLabel
  55.       Left = 256
  56.       Top = 24
  57.       Width = 25
  58.       Height = 13
  59.       Caption = 'Year:'
  60.     end
  61.     object LabelRemind: TLabel
  62.       Left = 256
  63.       Top = 43
  64.       Width = 110
  65.       Height = 13
  66.       Caption = '(year filter in 32-bit only)'
  67.     end
  68.     object RadioGroup2: TRadioGroup
  69.       Left = 152
  70.       Top = 8
  71.       Width = 81
  72.       Height = 65
  73.       ItemIndex = 0
  74.       Items.Strings = (
  75.         'Monthly'
  76.         'Weekly')
  77.       TabOrder = 0
  78.       OnClick = RadioGroup2Click
  79.     end
  80.     object RadioGroup1: TRadioGroup
  81.       Left = 16
  82.       Top = 8
  83.       Width = 121
  84.       Height = 65
  85.       Caption = 'Chart:'
  86.       ItemIndex = 1
  87.       Items.Strings = (
  88.         'Count'
  89.         'Sum of Amount')
  90.       TabOrder = 1
  91.       OnClick = RadioGroup1Click
  92.     end
  93.     object ComboBox1: TComboBox
  94.       Left = 288
  95.       Top = 19
  96.       Width = 73
  97.       Height = 21
  98.       Style = csDropDownList
  99.       ItemHeight = 13
  100.       Items.Strings = (
  101.         '(all)'
  102.         '1989'
  103.         '1992'
  104.         '1993'
  105.         '1994')
  106.       TabOrder = 2
  107.       OnChange = ComboBox1Change
  108.     end
  109.     object Button1: TButton
  110.       Left = 400
  111.       Top = 16
  112.       Width = 75
  113.       Height = 25
  114.       Caption = '&Edit...'
  115.       TabOrder = 3
  116.       OnClick = Button1Click
  117.     end
  118.     object CheckBox1: TCheckBox
  119.       Left = 400
  120.       Top = 48
  121.       Width = 97
  122.       Height = 17
  123.       Caption = 'Marks'
  124.       State = cbChecked
  125.       TabOrder = 4
  126.       OnClick = CheckBox1Click
  127.     end
  128.   end
  129.   object DataSource1: TDataSource
  130.     DataSet = Table1
  131.     Left = 240
  132.     Top = 96
  133.   end
  134.   object Table1: TTable
  135.     Active = True
  136.     DatabaseName = 'dbdemos'
  137.     TableName = 'ORDERS.DB'
  138.     Left = 184
  139.     Top = 96
  140.   end
  141. end
  142.