-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttpChartFrm.dfm
More file actions
193 lines (193 loc) · 4.3 KB
/
httpChartFrm.dfm
File metadata and controls
193 lines (193 loc) · 4.3 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
object httpChartForm: ThttpChartForm
Left = 661
Top = 271
Width = 792
Height = 458
Caption = 'HTTP Charts'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsMDIChild
OldCreateOrder = False
Position = poDefault
Visible = True
OnClose = FormClose
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object theChart: TChart
Left = 0
Top = 65
Width = 776
Height = 354
AllowZoom = False
BackWall.Brush.Color = clWhite
BackWall.Brush.Style = bsClear
Foot.Visible = False
Title.Text.Strings = (
'TChart')
Title.Visible = False
Legend.Visible = False
View3D = False
Align = alClient
TabOrder = 1
object theSeries: TLineSeries
Marks.ArrowLength = 8
Marks.Visible = False
SeriesColor = clRed
Title = 'DataSeries'
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.DateTime = False
XValues.Name = 'X'
XValues.Multiplier = 1
XValues.Order = loAscending
YValues.DateTime = False
YValues.Name = 'Y'
YValues.Multiplier = 1
YValues.Order = loNone
end
object dbSeries: TLineSeries
Marks.ArrowLength = 8
Marks.Visible = False
SeriesColor = clGreen
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.DateTime = False
XValues.Name = 'X'
XValues.Multiplier = 1
XValues.Order = loAscending
YValues.DateTime = False
YValues.Name = 'Y'
YValues.Multiplier = 1
YValues.Order = loNone
end
object GenerateSeries: TLineSeries
Marks.ArrowLength = 8
Marks.Visible = False
SeriesColor = clYellow
Title = 'GenerateSeries'
Pointer.InflateMargins = True
Pointer.Style = psRectangle
Pointer.Visible = False
XValues.DateTime = False
XValues.Name = 'X'
XValues.Multiplier = 1
XValues.Order = loAscending
YValues.DateTime = False
YValues.Name = 'Y'
YValues.Multiplier = 1
YValues.Order = loNone
end
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 776
Height = 65
Align = alTop
TabOrder = 0
object Label1: TLabel
Left = 8
Top = 8
Width = 28
Height = 13
Caption = 'Chart:'
end
object Label2: TLabel
Left = 296
Top = 8
Width = 26
Height = 13
Caption = 'Date:'
end
object funcLabel: TLabel
Left = 8
Top = 32
Width = 43
Height = 13
Caption = 'Request:'
end
object funcComboBox: TComboBox
Left = 56
Top = 32
Width = 577
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 3
end
object theDatePicker: TDateTimePicker
Left = 344
Top = 8
Width = 137
Height = 21
CalAlignment = dtaLeft
Date = 37328
Time = 37328
DateFormat = dfShort
DateMode = dmComboBox
Kind = dtkDate
ParseInput = False
TabOrder = 1
end
object ModeComboBox: TComboBox
Left = 56
Top = 8
Width = 233
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 0
Items.Strings = (
'Average Time per Request and Hour/Day'
'Average Time per Request and Hour'
'Average Time per Request and User Count')
end
object CalcButton: TButton
Left = 656
Top = 8
Width = 75
Height = 25
Caption = 'Calc'
TabOrder = 4
OnClick = CalcButtonClick
end
object endDatePicker: TDateTimePicker
Left = 496
Top = 8
Width = 137
Height = 21
CalAlignment = dtaLeft
Date = 37328
Time = 37328
DateFormat = dfShort
DateMode = dmComboBox
Kind = dtkDate
ParseInput = False
TabOrder = 2
end
object Complete: TCheckBox
Left = 656
Top = 40
Width = 65
Height = 17
Caption = 'Complete'
TabOrder = 5
end
end
object funcQuery: TQuery
DatabaseName = 'llCheck_DB'
SQL.Strings = (
'select distinct lower(http_url)'
'from http_thread'
'order by 1')
Left = 64
Top = 40
end
end