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 (109 lines) | stat: -rw-r--r-- 2,671 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
object Form1: TForm1
  Left = 350
  Height = 299
  Top = 151
  Width = 538
  Caption = 'Form1'
  ClientHeight = 299
  ClientWidth = 538
  OnCreate = FormCreate
  LCLVersion = '1.9.0.0'
  object Chart1: TChart
    Left = 0
    Height = 275
    Top = 24
    Width = 538
    AxisList = <    
      item
        Minors = <>
        Title.LabelFont.CharSet = ANSI_CHARSET
        Title.LabelFont.Color = clRed
        Title.LabelFont.Height = -19
        Title.LabelFont.Name = 'Times New Roman'
        Title.LabelFont.Orientation = 900
        Title.LabelFont.Pitch = fpVariable
        Title.LabelFont.Quality = fqDraft
        Title.LabelFont.Style = [fsItalic]
        Title.Visible = True
        Title.Caption = 'y axis'
      end    
      item
        Alignment = calBottom
        Minors = <>
        Title.LabelFont.CharSet = ANSI_CHARSET
        Title.LabelFont.Color = clBlue
        Title.LabelFont.Height = -19
        Title.LabelFont.Name = 'Times New Roman'
        Title.LabelFont.Pitch = fpVariable
        Title.LabelFont.Quality = fqDraft
        Title.LabelFont.Style = [fsItalic]
        Title.Visible = True
        Title.Caption = 'x axis'
      end>
    Foot.Brush.Color = clBtnFace
    Foot.Font.Color = clBlue
    Title.Brush.Color = clBtnFace
    Title.Font.Color = clBlue
    Title.Text.Strings = (
      'TAChart'
    )
    Align = alClient
    object Chart1BarSeries1: TBarSeries
      Marks.Format = '%0:.9g'
      Marks.Style = smsValue
      BarBrush.Color = clOlive
    end
    object Chart1FuncSeries1: TFuncSeries
      ZPosition = 1
      OnCalculate = Chart1FuncSeries1Calculate
      Pen.Color = clRed
      Pen.Width = 2
    end
  end
  object ToolBar1: TToolBar
    Left = 0
    Height = 24
    Top = 0
    Width = 538
    ButtonHeight = 22
    ButtonWidth = 100
    Caption = 'ToolBar1'
    Flat = False
    ShowCaptions = True
    TabOrder = 1
    object tbSaveAsBMP: TToolButton
      Left = 1
      Top = 2
      Caption = 'Save as BMP'
      OnClick = tbSaveAsBMPClick
    end
    object tbSaveAsPNG: TToolButton
      Left = 101
      Top = 2
      Caption = 'Save as PNG'
      OnClick = tbSaveAsPNGClick
    end
    object tbCopyToClipboard: TToolButton
      Left = 401
      Top = 2
      Caption = 'Copy to clipboard'
      OnClick = tbCopyToClipboardClick
    end
    object tbSaveAsJPEG: TToolButton
      Left = 201
      Top = 2
      Caption = 'Save as JPEG'
      OnClick = tbSaveAsJPEGClick
    end
    object tbSaveAsSVG: TToolButton
      Left = 301
      Top = 2
      Caption = 'Save as SVG'
      OnClick = tbSaveAsSVGClick
    end
  end
  object SaveDialog1: TSaveDialog
    left = 120
    top = 56
  end
end