-
Notifications
You must be signed in to change notification settings - Fork 1
/
fctform.lfm
71 lines (71 loc) · 1.82 KB
/
fctform.lfm
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
object FunctionForm: TFunctionForm
Left = 750
Height = 365
Top = 242
Width = 499
HorzScrollBar.Page = 75
VertScrollBar.Page = 50
AutoScroll = True
Caption = 'FunctionForm'
ClientHeight = 365
ClientWidth = 499
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '2.1.0.0'
object Chart: TChart
Left = 0
Height = 365
Top = 0
Width = 499
AxisList = <
item
Marks.LabelBrush.Style = bsClear
Minors = <>
Title.LabelFont.Orientation = 900
Title.LabelBrush.Style = bsClear
end
item
Intervals.MinLength = 20
Intervals.Options = [aipGraphCoords, aipUseMaxLength, aipUseMinLength, aipUseNiceSteps]
Intervals.Tolerance = 10
Alignment = calBottom
LabelSize = 32
Marks.LabelBrush.Style = bsClear
Minors = <>
Title.Visible = True
Title.Caption = 'f in Hz'
Title.LabelBrush.Style = bsClear
Transformations = ChartAxisLgTransformation
end>
Foot.Brush.Color = clBtnFace
Foot.Font.Color = clBlue
Legend.Alignment = laBottomCenter
Legend.Visible = True
Title.Brush.Color = clBtnFace
Title.Font.Color = clBlue
Title.Text.Strings = (
'Band Pass Filter Frequency Responses'
)
Title.Visible = True
Align = alClient
object VoltageTransfer: TLineSeries
Title = 'Transfer factor'
AxisIndexX = 1
AxisIndexY = 0
LinePen.Color = clRed
end
object VoltageTransferDQ: TLineSeries
Title = 'Transfer factor rise'
AxisIndexX = 1
AxisIndexY = 0
LinePen.Color = clAqua
end
end
object ChartAxisLgTransformation: TChartAxisTransformations
left = 120
top = 56
object ChartAxisLgTransformationLogarithmAxisTransform1: TLogarithmAxisTransform
Base = 10
end
end
end