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

  1. object ChartEditorForm: TChartEditorForm
  2.   Left = 134
  3.   Top = 40
  4.   Width = 544
  5.   Height = 504
  6.   ActiveControl = BShow
  7.   Caption = 'TeeChart Pro -- RunTime Editor options'
  8.   Font.Color = clWindowText
  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 Panel1: TPanel
  18.     Left = 0
  19.     Top = 0
  20.     Width = 536
  21.     Height = 65
  22.     Align = alTop
  23.     TabOrder = 0
  24.     object Memo1: TMemo
  25.       Left = 8
  26.       Top = 8
  27.       Width = 265
  28.       Height = 49
  29.       Lines.Strings = (
  30.         'This example shows how to use the new Chart Editor'
  31.         'component. Many properties to customize the run-time'
  32.         'editor dialog. ')
  33.       TabOrder = 0
  34.     end
  35.     object Button1: TButton
  36.       Left = 447
  37.       Top = 12
  38.       Width = 75
  39.       Height = 33
  40.       Caption = 'Close'
  41.       Default = True
  42.       TabOrder = 1
  43.       OnClick = Button1Click
  44.     end
  45.     object BShow: TBitBtn
  46.       Left = 288
  47.       Top = 13
  48.       Width = 129
  49.       Height = 33
  50.       Caption = '&Show Editor !'
  51.       TabOrder = 2
  52.       OnClick = BShowClick
  53.     end
  54.   end
  55.   object Chart1: TChart
  56.     Left = 0
  57.     Top = 233
  58.     Width = 536
  59.     Height = 244
  60.     BackWall.Brush.Color = clWhite
  61.     BackWall.Brush.Style = bsClear
  62.     Title.Text.Strings = (
  63.       'TChart')
  64.     Align = alClient
  65.     TabOrder = 1
  66.     object Series4: TAreaSeries
  67.       Marks.ArrowLength = 8
  68.       Marks.Visible = False
  69.       SeriesColor = clBlue
  70.       DrawArea = True
  71.       XValues.DateTime = False
  72.       XValues.Name = 'X'
  73.       XValues.Multiplier = 1.000000000000000000
  74.       XValues.Order = loAscending
  75.       YValues.DateTime = False
  76.       YValues.Name = 'Y'
  77.       YValues.Multiplier = 1.000000000000000000
  78.       YValues.Order = loNone
  79.     end
  80.     object Series2: TLineSeries
  81.       Marks.ArrowLength = 8
  82.       Marks.Visible = False
  83.       SeriesColor = clGreen
  84.       Pointer.InflateMargins = True
  85.       Pointer.Style = psRectangle
  86.       Pointer.Visible = False
  87.       XValues.DateTime = False
  88.       XValues.Name = 'X'
  89.       XValues.Multiplier = 1.000000000000000000
  90.       XValues.Order = loAscending
  91.       YValues.DateTime = False
  92.       YValues.Name = 'Y'
  93.       YValues.Multiplier = 1.000000000000000000
  94.       YValues.Order = loNone
  95.     end
  96.     object Series3: TPointSeries
  97.       Marks.ArrowLength = 0
  98.       Marks.Visible = False
  99.       SeriesColor = clYellow
  100.       Pointer.InflateMargins = True
  101.       Pointer.Style = psRectangle
  102.       Pointer.Visible = True
  103.       XValues.DateTime = False
  104.       XValues.Name = 'X'
  105.       XValues.Multiplier = 1.000000000000000000
  106.       XValues.Order = loAscending
  107.       YValues.DateTime = False
  108.       YValues.Name = 'Y'
  109.       YValues.Multiplier = 1.000000000000000000
  110.       YValues.Order = loNone
  111.     end
  112.     object Series1: TBarSeries
  113.       Marks.ArrowLength = 20
  114.       Marks.Visible = True
  115.       SeriesColor = clRed
  116.       XValues.DateTime = False
  117.       XValues.Name = 'X'
  118.       XValues.Multiplier = 1.000000000000000000
  119.       XValues.Order = loAscending
  120.       YValues.DateTime = False
  121.       YValues.Name = 'Bar'
  122.       YValues.Multiplier = 1.000000000000000000
  123.       YValues.Order = loNone
  124.     end
  125.   end
  126.   object Panel2: TPanel
  127.     Left = 0
  128.     Top = 65
  129.     Width = 536
  130.     Height = 168
  131.     Align = alTop
  132.     TabOrder = 2
  133.     object Label2: TLabel
  134.       Left = 25
  135.       Top = 140
  136.       Width = 55
  137.       Height = 13
  138.       Caption = 'Default tab:'
  139.     end
  140.     object Label3: TLabel
  141.       Left = 272
  142.       Top = 140
  143.       Width = 53
  144.       Height = 13
  145.       Caption = 'Editor &Title:'
  146.       FocusControl = Edit1
  147.     end
  148.     object ComboBoxTabs: TComboBox
  149.       Left = 88
  150.       Top = 136
  151.       Width = 161
  152.       Height = 21
  153.       Style = csDropDownList
  154.       ItemHeight = 13
  155.       Items.Strings = (
  156.         'Main'
  157.         'General'
  158.         'Axis'
  159.         'Titles'
  160.         'Legend'
  161.         'Panel'
  162.         'Paging'
  163.         'Walls'
  164.         '3D')
  165.       TabOrder = 0
  166.       OnChange = ComboBoxTabsChange
  167.     end
  168.     object Edit1: TEdit
  169.       Left = 344
  170.       Top = 136
  171.       Width = 169
  172.       Height = 21
  173.       TabOrder = 1
  174.       Text = 'Hello !'
  175.     end
  176.     object GroupBox2: TGroupBox
  177.       Left = 263
  178.       Top = 8
  179.       Width = 249
  180.       Height = 121
  181.       Caption = 'Show editor tabs:'
  182.       TabOrder = 2
  183.       object CBShowMain: TCheckBox
  184.         Left = 10
  185.         Top = 18
  186.         Width = 65
  187.         Height = 17
  188.         Caption = 'Main'
  189.         State = cbChecked
  190.         TabOrder = 0
  191.         OnClick = CBShowMainClick
  192.       end
  193.       object CBShowGeneral: TCheckBox
  194.         Left = 10
  195.         Top = 42
  196.         Width = 65
  197.         Height = 17
  198.         Caption = 'General'
  199.         State = cbChecked
  200.         TabOrder = 1
  201.         OnClick = CBShowMainClick
  202.       end
  203.       object CBShowAxis: TCheckBox
  204.         Left = 10
  205.         Top = 66
  206.         Width = 65
  207.         Height = 17
  208.         Caption = 'Axis'
  209.         State = cbChecked
  210.         TabOrder = 2
  211.         OnClick = CBShowMainClick
  212.       end
  213.       object CBShowTitles: TCheckBox
  214.         Left = 90
  215.         Top = 18
  216.         Width = 65
  217.         Height = 17
  218.         Caption = 'Titles'
  219.         State = cbChecked
  220.         TabOrder = 3
  221.         OnClick = CBShowMainClick
  222.       end
  223.       object CBShowLegend: TCheckBox
  224.         Left = 90
  225.         Top = 42
  226.         Width = 65
  227.         Height = 17
  228.         Caption = 'Legend'
  229.         State = cbChecked
  230.         TabOrder = 4
  231.         OnClick = CBShowMainClick
  232.       end
  233.       object CBShowPanel: TCheckBox
  234.         Left = 90
  235.         Top = 66
  236.         Width = 65
  237.         Height = 17
  238.         Caption = 'Panel'
  239.         State = cbChecked
  240.         TabOrder = 5
  241.         OnClick = CBShowMainClick
  242.       end
  243.       object CBShowPaging: TCheckBox
  244.         Left = 162
  245.         Top = 18
  246.         Width = 65
  247.         Height = 17
  248.         Caption = 'Paging'
  249.         State = cbChecked
  250.         TabOrder = 6
  251.         OnClick = CBShowMainClick
  252.       end
  253.       object CBShowWalls: TCheckBox
  254.         Left = 162
  255.         Top = 42
  256.         Width = 57
  257.         Height = 17
  258.         Caption = 'Walls'
  259.         State = cbChecked
  260.         TabOrder = 7
  261.         OnClick = CBShowMainClick
  262.       end
  263.       object CBShow3D: TCheckBox
  264.         Left = 162
  265.         Top = 66
  266.         Width = 57
  267.         Height = 17
  268.         Caption = '3D'
  269.         State = cbChecked
  270.         TabOrder = 8
  271.         OnClick = CBShowMainClick
  272.       end
  273.       object CBShowSeriesGeneral: TCheckBox
  274.         Left = 10
  275.         Top = 90
  276.         Width = 103
  277.         Height = 17
  278.         Caption = 'Series General'
  279.         State = cbChecked
  280.         TabOrder = 9
  281.         OnClick = CBShowMainClick
  282.       end
  283.       object CBShowSeriesMarks: TCheckBox
  284.         Left = 130
  285.         Top = 90
  286.         Width = 95
  287.         Height = 17
  288.         Caption = 'Series Marks'
  289.         State = cbChecked
  290.         TabOrder = 10
  291.         OnClick = CBShowMainClick
  292.       end
  293.     end
  294.     object GroupBox1: TGroupBox
  295.       Left = 8
  296.       Top = 8
  297.       Width = 241
  298.       Height = 121
  299.       Caption = 'Allow:'
  300.       TabOrder = 3
  301.       object AddCheckBox: TCheckBox
  302.         Left = 8
  303.         Top = 24
  304.         Width = 129
  305.         Height = 17
  306.         Caption = '&Add Series'
  307.         State = cbChecked
  308.         TabOrder = 0
  309.         OnClick = AddCheckBoxClick
  310.       end
  311.       object DeleteCheckBox: TCheckBox
  312.         Left = 8
  313.         Top = 48
  314.         Width = 129
  315.         Height = 17
  316.         Caption = '&Delete Series'
  317.         State = cbChecked
  318.         TabOrder = 1
  319.         OnClick = AddCheckBoxClick
  320.       end
  321.       object ChangeCheckBox: TCheckBox
  322.         Left = 104
  323.         Top = 24
  324.         Width = 129
  325.         Height = 17
  326.         Caption = '&Change Series type'
  327.         State = cbChecked
  328.         TabOrder = 2
  329.         OnClick = AddCheckBoxClick
  330.       end
  331.       object CloneCheckBox: TCheckBox
  332.         Left = 104
  333.         Top = 48
  334.         Width = 129
  335.         Height = 17
  336.         Caption = 'C&lone Series'
  337.         State = cbChecked
  338.         TabOrder = 3
  339.         OnClick = AddCheckBoxClick
  340.       end
  341.       object TitleCheckBox: TCheckBox
  342.         Left = 8
  343.         Top = 72
  344.         Width = 129
  345.         Height = 17
  346.         Caption = 'Change &Title'
  347.         State = cbChecked
  348.         TabOrder = 4
  349.         OnClick = AddCheckBoxClick
  350.       end
  351.       object DataSourceCheckBox: TCheckBox
  352.         Left = 104
  353.         Top = 72
  354.         Width = 129
  355.         Height = 17
  356.         Caption = 'Series &Datasource'
  357.         State = cbChecked
  358.         TabOrder = 5
  359.         OnClick = AddCheckBoxClick
  360.       end
  361.       object HelpCheckBox: TCheckBox
  362.         Left = 8
  363.         Top = 96
  364.         Width = 129
  365.         Height = 17
  366.         Caption = '&Help buttons'
  367.         State = cbChecked
  368.         TabOrder = 6
  369.         OnClick = AddCheckBoxClick
  370.       end
  371.     end
  372.   end
  373.   object ChartEditor1: TChartEditor
  374.     Chart = Chart1
  375.     HideTabs = []
  376.     Left = 432
  377.     Top = 40
  378.   end
  379. end
  380.