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

  1. object CummuForm: TCummuForm
  2.   Left = 141
  3.   Top = 75
  4.   Width = 493
  5.   Height = 417
  6.   Caption = 'teeMach, SL  --- Chart Templates'
  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 Label1: TLabel
  15.     Left = 104
  16.     Top = 8
  17.     Width = 205
  18.     Height = 20
  19.     Caption = 'Histogram Chart Example'
  20.     Font.Color = clWindowText
  21.     Font.Height = -16
  22.     Font.Name = 'MS Sans Serif'
  23.     Font.Style = [fsBold]
  24.     ParentFont = False
  25.   end
  26.   object Label3: TLabel
  27.     Left = 8
  28.     Top = 352
  29.     Width = 460
  30.     Height = 13
  31.     Caption = 
  32.       'The green Line Series is a Cumulative Sum function of the red Ba' +
  33.       'r Series values.'
  34.     Font.Color = clWindowText
  35.     Font.Height = -11
  36.     Font.Name = 'MS Sans Serif'
  37.     Font.Style = [fsBold]
  38.     ParentFont = False
  39.   end
  40.   object Chart1: TChart
  41.     Left = 8
  42.     Top = 40
  43.     Width = 465
  44.     Height = 305
  45.     BackWall.Brush.Color = clWhite
  46.     BackWall.Color = 8454143
  47.     BackWall.Pen.Color = clBlue
  48.     BackWall.Pen.Width = 2
  49.     Title.Text.Strings = (
  50.       'Histogram')
  51.     BackColor = 8454143
  52.     BottomAxis.Grid.Visible = False
  53.     BottomAxis.EndPosition = 100.000000000000000000
  54.     Frame.Color = clBlue
  55.     Frame.Width = 2
  56.     LeftAxis.Axis.Visible = False
  57.     LeftAxis.Grid.Visible = False
  58.     LeftAxis.EndPosition = 100.000000000000000000
  59.     LeftAxis.TickLength = 8
  60.     LeftAxis.Title.Caption = 'Sales'
  61.     LeftAxis.Title.Font.Color = clBlack
  62.     LeftAxis.Title.Font.Height = -12
  63.     LeftAxis.Title.Font.Name = 'Arial'
  64.     LeftAxis.Title.Font.Style = [fsBold]
  65.     Legend.Alignment = laBottom
  66.     RightAxis.Automatic = False
  67.     RightAxis.AutomaticMinimum = False
  68.     RightAxis.Axis.Visible = False
  69.     RightAxis.Grid.Color = clSilver
  70.     RightAxis.Grid.Style = psSolid
  71.     RightAxis.LabelsFont.Color = clBlack
  72.     RightAxis.LabelsFont.Height = -12
  73.     RightAxis.LabelsFont.Name = 'Arial'
  74.     RightAxis.LabelsFont.Style = []
  75.     RightAxis.MinorTickLength = 4
  76.     RightAxis.EndPosition = 100.000000000000000000
  77.     RightAxis.TickLength = 9
  78.     RightAxis.Title.Caption = 'Cummulative Sales'
  79.     RightAxis.Title.Font.Color = clBlack
  80.     RightAxis.Title.Font.Height = -15
  81.     RightAxis.Title.Font.Name = 'Arial'
  82.     RightAxis.Title.Font.Style = [fsBold]
  83.     TopAxis.EndPosition = 100.000000000000000000
  84.     View3D = False
  85.     Color = clSilver
  86.     TabOrder = 0
  87.     object Series1: TBarSeries
  88.       Marks.Arrow.Color = clBlue
  89.       Marks.Arrow.Width = 2
  90.       Marks.ArrowLength = 20
  91.       Marks.BackColor = 16777088
  92.       Marks.Visible = False
  93.       SeriesColor = clRed
  94.       Title = 'Sales'
  95.       XValues.DateTime = False
  96.       XValues.Name = 'X'
  97.       XValues.Multiplier = 1.000000000000000000
  98.       XValues.Order = loAscending
  99.       YValues.DateTime = False
  100.       YValues.Name = 'Bar'
  101.       YValues.Multiplier = 1.000000000000000000
  102.       YValues.Order = loNone
  103.     end
  104.     object Series2: TLineSeries
  105.       Marks.ArrowLength = 8
  106.       Marks.BackColor = 16777088
  107.       Marks.Font.Color = clNavy
  108.       Marks.Font.Height = -11
  109.       Marks.Font.Name = 'Arial'
  110.       Marks.Font.Style = []
  111.       Marks.Frame.Color = clNavy
  112.       Marks.Frame.Width = 2
  113.       Marks.Style = smsValue
  114.       Marks.Visible = True
  115.       DataSource = Series1
  116.       SeriesColor = clGreen
  117.       Title = 'Cummulative Sales'
  118.       VertAxis = aRightAxis
  119.       LinePen.Style = psDot
  120.       Pointer.HorizSize = 6
  121.       Pointer.InflateMargins = True
  122.       Pointer.Style = psDiamond
  123.       Pointer.VertSize = 6
  124.       Pointer.Visible = True
  125.       XValues.DateTime = False
  126.       XValues.Name = 'X'
  127.       XValues.Multiplier = 1.000000000000000000
  128.       XValues.Order = loAscending
  129.       YValues.DateTime = False
  130.       YValues.Name = 'Y'
  131.       YValues.Multiplier = 1.000000000000000000
  132.       YValues.Order = loNone
  133.       object TeeFunction1: TCumulative
  134.         Period = 1.000000000000000000
  135.       end
  136.     end
  137.   end
  138.   object Button1: TButton
  139.     Left = 8
  140.     Top = 8
  141.     Width = 75
  142.     Height = 25
  143.     Caption = '&Edit Chart...'
  144.     TabOrder = 1
  145.     OnClick = Button1Click
  146.   end
  147.   object Button2: TButton
  148.     Left = 400
  149.     Top = 8
  150.     Width = 75
  151.     Height = 25
  152.     Caption = 'Close'
  153.     TabOrder = 2
  154.     OnClick = Button2Click
  155.   end
  156. end
  157.