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 (161 lines) | stat: -rw-r--r-- 3,861 bytes parent folder | download | duplicates (6)
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
object Form1: TForm1
  Left = 835
  Height = 510
  Top = 263
  Width = 739
  AutoScroll = True
  Caption = 'Form1'
  ClientHeight = 510
  ClientWidth = 739
  Position = poScreenCenter
  LCLVersion = '0.9.31'
  object PageControl1: TPageControl
    Left = 0
    Height = 510
    Top = 0
    Width = 739
    ActivePage = tsSeries
    Align = alClient
    TabIndex = 0
    TabOrder = 0
    object tsSeries: TTabSheet
      Caption = 'Series'
      ClientHeight = 484
      ClientWidth = 731
      object ChartSeries: TChart
        Left = 0
        Height = 444
        Top = 0
        Width = 731
        AxisList = <        
          item
            Title.LabelFont.Orientation = 900
          end        
          item
            Alignment = calBottom
          end>
        Depth = 30
        Foot.Brush.Color = clBtnFace
        Foot.Font.Color = clBlue
        Title.Brush.Color = clBtnFace
        Title.Font.Color = clBlue
        Title.Text.Strings = (
          'TAChart'
        )
        Align = alClient
        ParentColor = False
        object ChartSeriesLineSeries1: TLineSeries
          Marks.Format = 'X'
          Marks.Style = smsCustom
          LinePen.Color = clPurple
          LinePen.Style = psDot
          LinePen.Width = 4
          Source = RandomChartSource1
        end
        object ChartSeriesBarSeries1: TBarSeries
          BarBrush.Color = clRed
          BarWidthPercent = 15
          Source = RandomChartSource1
        end
      end
      object Panel1: TPanel
        Left = 0
        Height = 40
        Top = 444
        Width = 731
        Align = alBottom
        ClientHeight = 40
        ClientWidth = 731
        TabOrder = 1
        object btnLine: TButton
          Left = 4
          Height = 25
          Top = 6
          Width = 75
          Caption = 'Line'
          OnClick = btnLineClick
          TabOrder = 0
        end
        object btnBar: TButton
          Left = 88
          Height = 25
          Top = 6
          Width = 75
          Caption = 'Bar'
          OnClick = btnBarClick
          TabOrder = 1
        end
      end
    end
    object tsCharts: TTabSheet
      Caption = 'Charts'
      ClientHeight = 484
      ClientWidth = 731
      object Chart1: TChart
        Left = 0
        Height = 128
        Top = 0
        Width = 731
        AxisList = <        
          item
            Alignment = calRight
            Grid.Visible = False
            Inverted = True
            Title.LabelFont.Orientation = 900
          end        
          item
            Alignment = calBottom
          end>
        Foot.Brush.Color = clBtnFace
        Foot.Font.Color = clBlue
        Title.Brush.Color = clBtnFace
        Title.Font.Color = clBlue
        Title.Text.Strings = (
          'TAChart'
        )
        Align = alTop
        ParentColor = False
        object Chart1AreaSeries1: TAreaSeries
          Marks.Clipped = False
          Marks.Format = '%0:.1g'
          Marks.Style = smsCustom
          AreaBrush.Color = clOlive
          AreaBrush.Style = bsDiagCross
          AreaContourPen.Color = clMaroon
          AreaContourPen.Width = 2
          AreaLinesPen.Style = psClear
          Source = RandomChartSource1
        end
      end
      object Panel2: TPanel
        Left = 0
        Height = 40
        Top = 444
        Width = 731
        Align = alBottom
        ClientHeight = 40
        ClientWidth = 731
        TabOrder = 1
        object btnClone: TButton
          Left = 4
          Height = 25
          Top = 6
          Width = 75
          Caption = 'Clone'
          OnClick = btnCloneClick
          TabOrder = 0
        end
      end
    end
  end
  object RandomChartSource1: TRandomChartSource
    PointsNumber = 20
    RandSeed = 1451691538
    XMax = 20
    XMin = 1
    YMax = 10
    YMin = 5
    left = 549
    top = 102
  end
end