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 (126 lines) | stat: -rw-r--r-- 2,560 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
object Form1: TForm1
  Left = 318
  Height = 347
  Top = 150
  Width = 560
  Caption = 'Form1'
  ClientHeight = 347
  ClientWidth = 560
  OnShow = FormShow
  Position = poScreenCenter
  LCLVersion = '0.9.31'
  object Chart1: TChart
    Left = 0
    Height = 297
    Top = 0
    Width = 560
    AxisList = <    
      item
        Grid.Color = clGray
        AxisPen.Visible = True
        Minors = <>
        Title.LabelFont.Orientation = 900
      end    
      item
        Grid.Color = clGray
        Alignment = calBottom
        AxisPen.Visible = True
        Minors = <>
      end>
    BackColor = clSkyBlue
    Depth = 50
    Foot.Brush.Color = clBtnFace
    Foot.Font.Color = clBlue
    Margins.Bottom = 0
    Title.Brush.Color = clBtnFace
    Title.Font.Color = clBlue
    Title.Text.Strings = (
      'TAChart'
    )
    Align = alClient
    Color = clWhite
    ParentColor = False
    object Chart1BarSeries1: TBarSeries
      ZPosition = 10
      BarBrush.Color = clTeal
      BarWidthPercent = 50
      Depth = 10
      Source = RandomChartSource1
    end
    object Chart1BarSeries2: TBarSeries
      ZPosition = 30
      BarBrush.Color = clMaroon
      BarWidthPercent = 50
      Depth = 10
      Source = RandomChartSource2
    end
    object Chart1LineSeries1: TLineSeries
      ZPosition = 50
      Depth = 10
      LinePen.Color = clBlue
      Source = RandomChartSource1
    end
  end
  object pnControls: TPanel
    Left = 0
    Height = 50
    Top = 297
    Width = 560
    Align = alBottom
    ClientHeight = 50
    ClientWidth = 560
    TabOrder = 1
    object seDepth: TSpinEdit
      Left = 52
      Height = 21
      Top = 7
      Width = 74
      OnChange = seDepthChange
      TabOrder = 0
    end
    object lblDepth: TLabel
      Left = 8
      Height = 14
      Top = 11
      Width = 34
      Caption = 'Depth:'
      ParentColor = False
    end
    object seAxisZ: TSpinEdit
      Left = 196
      Height = 21
      Top = 7
      Width = 74
      OnChange = seAxisZChange
      TabOrder = 1
    end
    object lblAxisZ: TLabel
      Left = 152
      Height = 14
      Top = 11
      Width = 34
      Caption = 'Axis Z:'
      ParentColor = False
    end
  end
  object RandomChartSource1: TRandomChartSource
    PointsNumber = 7
    RandSeed = 545516281
    XMax = 7
    XMin = 1
    YMax = 12
    YMin = 4
    left = 120
    top = 52
  end
  object RandomChartSource2: TRandomChartSource
    PointsNumber = 7
    RandSeed = 87568756
    XMax = 7
    XMin = 1
    YMax = 12
    YMin = 1
    left = 120
    top = 100
  end
end