File: Main.lfm

package info (click to toggle)
lazarus 2.2.6%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 219,980 kB
  • sloc: pascal: 1,944,919; xml: 357,634; makefile: 270,608; cpp: 57,115; sh: 3,249; java: 609; perl: 297; sql: 222; ansic: 137
file content (89 lines) | stat: -rw-r--r-- 2,070 bytes parent folder | download | duplicates (4)
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
object Form1: TForm1
  Left = 354
  Height = 388
  Top = 145
  Width = 550
  Caption = 'Form1'
  ClientHeight = 388
  ClientWidth = 550
  LCLVersion = '2.3.0.0'
  object Chart1: TChart
    Left = 0
    Height = 342
    Top = 0
    Width = 550
    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 Chart1FuncSeries1: TFuncSeries
      Active = False
      Extent.UseXMax = True
      Extent.UseXMin = True
      Extent.XMax = 1
      Extent.XMin = -1
      ExtentAutoY = True
      Pen.Color = clGreen
      Pen.Width = 2
      OnCalculate = Chart1FuncSeries1Calculate
    end
  end
  object Panel1: TPanel
    Left = 0
    Height = 46
    Top = 342
    Width = 550
    Align = alBottom
    AutoSize = True
    ClientHeight = 46
    ClientWidth = 550
    TabOrder = 1
    object edFormula: TEdit
      AnchorSideLeft.Control = Panel1
      AnchorSideTop.Control = Panel1
      AnchorSideTop.Side = asrCenter
      AnchorSideRight.Control = btnRefresh
      Left = 9
      Height = 23
      Top = 12
      Width = 449
      Anchors = [akTop, akLeft, akRight]
      BorderSpacing.Around = 8
      TabOrder = 0
      Text = 'sin(x*5) + x'
    end
    object btnRefresh: TButton
      AnchorSideTop.Control = Panel1
      AnchorSideTop.Side = asrCenter
      AnchorSideRight.Control = Panel1
      AnchorSideRight.Side = asrBottom
      Left = 466
      Height = 27
      Top = 10
      Width = 75
      Anchors = [akTop, akRight]
      BorderSpacing.Around = 8
      Caption = 'Refresh'
      Default = True
      OnClick = btnRefreshClick
      TabOrder = 1
    end
  end
end