-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathunit8.lfm
178 lines (178 loc) · 4.23 KB
/
unit8.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
object Form8: TForm8
Left = 247
Height = 438
Top = 111
Width = 747
Caption = 'Form8'
ClientHeight = 438
ClientWidth = 747
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.1.0.0'
object Chart1: TChart
Left = 8
Height = 424
Top = 8
Width = 480
AxisList = <
item
Marks.Format = '%.0f'
Marks.LabelBrush.Style = bsClear
Marks.Style = smsCustom
Minors = <>
Range.UseMin = True
Title.LabelFont.Orientation = 900
Title.LabelBrush.Style = bsClear
Transformations = ChartAxisTransformations1
end
item
Alignment = calBottom
Marks.LabelBrush.Style = bsClear
Minors = <>
Range.Max = 255
Range.UseMax = True
Range.UseMin = True
Title.LabelBrush.Style = bsClear
end>
Foot.Brush.Color = clBtnFace
Foot.Font.Color = clBlue
Title.Brush.Color = clBtnFace
Title.Font.Color = clBlue
Title.Text.Strings = (
'TAChart'
)
object Grau: TLineSeries
Title = 'Luminance'
AxisIndexX = 1
AxisIndexY = 0
end
object Rot: TLineSeries
Title = 'R-Value'
AxisIndexX = 1
AxisIndexY = 0
LinePen.Color = clRed
end
object Gruen: TLineSeries
Title = 'G-Value'
AxisIndexX = 1
AxisIndexY = 0
LinePen.Color = clGreen
end
object Blau: TLineSeries
Title = 'B-Value'
AxisIndexX = 1
AxisIndexY = 0
LinePen.Color = clBlue
end
object KomGrau: TLineSeries
AxisIndexX = 1
AxisIndexY = 0
end
object KomRot: TLineSeries
AxisIndexX = 1
AxisIndexY = 0
LinePen.Color = clRed
end
object KomGruen: TLineSeries
AxisIndexX = 1
AxisIndexY = 0
LinePen.Color = clGreen
end
object KomBlau: TLineSeries
AxisIndexX = 1
AxisIndexY = 0
LinePen.Color = clBlue
end
end
object ComboBox1: TComboBox
Left = 569
Height = 23
Top = 16
Width = 168
ItemHeight = 15
ItemIndex = 0
Items.Strings = (
'Gray value'
'Red channel'
'Green channel'
'Blue channel'
'Color channels'
)
OnChange = ComboBox1Change
Style = csDropDownList
TabOrder = 1
Text = 'Gray value'
end
object Label1: TLabel
Left = 496
Height = 15
Top = 104
Width = 34
Caption = 'Label1'
ParentColor = False
end
object RadioGroup1: TRadioGroup
Left = 496
Height = 56
Top = 48
Width = 113
AutoFill = True
Caption = ' Scale '
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 36
ClientWidth = 109
ItemIndex = 0
Items.Strings = (
'Linear'
'Logarithmic'
)
OnClick = RadioGroup1Click
TabOrder = 2
end
object RadioGroup2: TRadioGroup
Left = 624
Height = 56
Top = 48
Width = 113
AutoFill = True
Caption = ' Kind '
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 36
ClientWidth = 109
ItemIndex = 0
Items.Strings = (
'Separat'
'Commulativ'
)
OnClick = ComboBox1Change
TabOrder = 3
end
object Label2: TLabel
Left = 496
Height = 15
Top = 24
Width = 36
Caption = 'Source'
ParentColor = False
end
object ChartAxisTransformations1: TChartAxisTransformations
Left = 192
Top = 160
object ChartAxisTransformations1LogarithmAxisTransform1: TLogarithmAxisTransform
Enabled = False
Base = 10
end
end
end