File: Main.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (178 lines) | stat: -rw-r--r-- 4,281 bytes parent folder | download | duplicates (2)
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 Form1: TForm1
  Left = 342
  Height = 437
  Top = 152
  Width = 456
  Caption = 'Form1'
  ClientHeight = 437
  ClientWidth = 456
  DefaultMonitor = dmDesktop
  Position = poScreenCenter
  LCLVersion = '2.1.0.0'
  object Chart1: TChart
    Left = 0
    Height = 373
    Top = 0
    Width = 456
    AxisList = <    
      item
        Marks.LabelBrush.Style = bsClear
        Minors = <>
        Title.LabelFont.Orientation = 900
        Title.LabelBrush.Style = bsClear
      end    
      item
        Alignment = calBottom
        Marks.LabelBrush.Style = bsClear
        Minors = <>
        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'
    )
    Align = alClient
    object Chart1LineSeries1: TLineSeries
      Marks.Format = '%1:.0g%%'
      Marks.Style = smsCustom
      ZPosition = 12
      AxisIndexX = 1
      AxisIndexY = 0
      LinePen.Color = clRed
      LinePen.Style = psDot
      LinePen.Width = 5
      Source = RandomChartSource1
    end
    object Chart1BarSeries1: TBarSeries
      ZPosition = 11
      AxisIndexX = 1
      AxisIndexY = 0
      BarBrush.Color = clMoneyGreen
      Source = RandomChartSource1
    end
    object Chart1AreaSeries1: TAreaSeries
      AxisIndexX = 1
      AxisIndexY = 0
      AreaContourPen.Width = 2
      AreaLinesPen.Color = clRed
      Depth = 10
      Source = RandomChartSource1
      UseZeroLevel = True
    end
  end
  object Panel1: TPanel
    Left = 0
    Height = 64
    Top = 373
    Width = 456
    Align = alBottom
    AutoSize = True
    ClientHeight = 64
    ClientWidth = 456
    TabOrder = 1
    object cbRotateLine: TCheckBox
      AnchorSideLeft.Control = Panel1
      AnchorSideTop.Control = Panel1
      Left = 9
      Height = 19
      Top = 5
      Width = 81
      BorderSpacing.Left = 8
      BorderSpacing.Top = 4
      Caption = 'Rotate lines'
      OnChange = cbRotateLineChange
      TabOrder = 0
    end
    object cbRotateBar: TCheckBox
      AnchorSideLeft.Control = cbRotateLine
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = Panel1
      Left = 106
      Height = 19
      Top = 5
      Width = 79
      BorderSpacing.Left = 16
      BorderSpacing.Top = 4
      Caption = 'Rotate bars'
      OnChange = cbRotateBarChange
      TabOrder = 1
    end
    object cbNegative: TCheckBox
      AnchorSideLeft.Control = cbRotateArea
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = Panel1
      Left = 296
      Height = 19
      Top = 5
      Width = 103
      BorderSpacing.Left = 16
      BorderSpacing.Top = 4
      Caption = 'Negative values'
      OnChange = cbNegativeChange
      TabOrder = 2
    end
    object cbRotateArea: TCheckBox
      AnchorSideLeft.Control = cbRotateBar
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = Panel1
      Left = 201
      Height = 19
      Top = 5
      Width = 79
      BorderSpacing.Left = 16
      BorderSpacing.Top = 4
      Caption = 'Rotate area'
      OnChange = cbRotateAreaChange
      TabOrder = 3
    end
    object cbMarkPositions: TComboBox
      AnchorSideLeft.Control = lblMarkPositions
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = cbRotateLine
      AnchorSideTop.Side = asrBottom
      Left = 95
      Height = 23
      Top = 32
      Width = 100
      BorderSpacing.Left = 8
      BorderSpacing.Top = 8
      BorderSpacing.Bottom = 8
      ItemHeight = 15
      ItemIndex = 0
      Items.Strings = (
        'Outside'
        'Positive'
        'Negative'
        'Inside'
      )
      OnChange = cbMarkPositionsChange
      Style = csDropDownList
      TabOrder = 4
      Text = 'Outside'
    end
    object lblMarkPositions: TLabel
      AnchorSideLeft.Control = cbRotateLine
      AnchorSideTop.Control = cbMarkPositions
      AnchorSideTop.Side = asrCenter
      Left = 9
      Height = 15
      Top = 36
      Width = 78
      Caption = 'Mark positions'
      ParentColor = False
    end
  end
  object RandomChartSource1: TRandomChartSource
    PointsNumber = 9
    RandSeed = 1376070732
    XMax = 8
    XMin = 0
    YMax = 15
    YMin = 7
    left = 352
    top = 20
  end
end