mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-30 23:02:47 +02:00
77 lines
1.6 KiB
Plaintext
77 lines
1.6 KiB
Plaintext
object Form1: TForm1
|
|
Left = 318
|
|
Height = 300
|
|
Top = 150
|
|
Width = 560
|
|
Caption = 'Form1'
|
|
ClientHeight = 300
|
|
ClientWidth = 560
|
|
Position = poScreenCenter
|
|
LCLVersion = '0.9.27'
|
|
object Chart1: TChart
|
|
Left = 0
|
|
Height = 300
|
|
Top = 0
|
|
Width = 560
|
|
BackColor = clSilver
|
|
BottomAxis.Grid.Style = psDot
|
|
Depth = 50
|
|
Foot.Brush.Color = clBtnFace
|
|
Foot.Font.Color = clBlue
|
|
LeftAxis.Grid.Style = psDot
|
|
LeftAxis.Title.Angle = 90
|
|
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
|
|
SeriesColor = clTeal
|
|
Source = RandomChartSource1
|
|
end
|
|
object Chart1BarSeries2: TBarSeries
|
|
ZPosition = 30
|
|
BarBrush.Color = clMaroon
|
|
BarWidthPercent = 50
|
|
Depth = 10
|
|
SeriesColor = clMaroon
|
|
Source = RandomChartSource2
|
|
end
|
|
object Chart1LineSeries1: TLineSeries
|
|
ZPosition = 50
|
|
Depth = 10
|
|
LinePen.Color = clBlue
|
|
SeriesColor = clBlue
|
|
Source = RandomChartSource1
|
|
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
|