1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
object MainForm: TMainForm
Left = 356
Height = 387
Top = 274
Width = 781
Caption = 'MainForm'
ClientHeight = 387
ClientWidth = 781
OnCreate = FormCreate
LCLVersion = '1.7'
object BtnAdd: TButton
AnchorSideLeft.Control = CbPlotTypes
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
Left = 204
Height = 25
Hint = 'Add selected series type to chart'
Top = 8
Width = 75
BorderSpacing.Left = 8
BorderSpacing.Top = 8
Caption = 'Add'
OnClick = BtnAddClick
TabOrder = 1
end
object Chart: TChart
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Bevel1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 4
Height = 335
Top = 44
Width = 773
AxisList = <
item
Minors = <>
Title.LabelFont.Orientation = 900
end
item
Alignment = calBottom
Minors = <>
end>
Foot.Brush.Color = clBtnFace
Foot.Font.Color = clBlue
Title.Brush.Color = clBtnFace
Title.Font.Color = clBlue
Title.Text.Strings = (
'TAChart'
)
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Left = 4
BorderSpacing.Right = 4
BorderSpacing.Bottom = 8
end
object CbPlotTypes: TComboBox
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = BtnAdd
AnchorSideTop.Side = asrCenter
Left = 8
Height = 23
Hint = 'Select series type'
Top = 9
Width = 188
BorderSpacing.Left = 8
BorderSpacing.Top = 8
DropDownCount = 32
ItemHeight = 15
ItemIndex = 1
Items.Strings = (
'Symbols only'
'Symbols + line segments'
'Symbols + cubic spline'
'Symbols + BSpline'
'Symbols + linear fit'
'Symbols + parabolic fit'
'Area'
)
Style = csDropDownList
TabOrder = 0
Text = 'Symbols + line segments'
end
object BtnClear: TButton
AnchorSideLeft.Control = BtnAdd
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = BtnAdd
AnchorSideTop.Side = asrCenter
Left = 287
Height = 25
Hint = 'Clear all series from chart'
Top = 8
Width = 75
BorderSpacing.Left = 8
Caption = 'Clear'
OnClick = BtnClearClick
TabOrder = 2
end
object Bevel1: TBevel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = BtnAdd
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 8
Height = 3
Top = 41
Width = 765
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Right = 8
Shape = bsTopLine
end
end
|