mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-14 13:55:57 +02:00
136 lines
3.4 KiB
Plaintext
136 lines
3.4 KiB
Plaintext
object Form1: TForm1
|
|
Left = 280
|
|
Height = 307
|
|
Top = 130
|
|
Width = 585
|
|
Caption = 'Form1'
|
|
ClientHeight = 307
|
|
ClientWidth = 585
|
|
LCLVersion = '2.3.0.0'
|
|
object Chart1: TChart
|
|
AnchorSideBottom.Control = cbAtDataOnly
|
|
AnchorSideBottom.Side = asrBottom
|
|
Left = 0
|
|
Height = 276
|
|
Top = 0
|
|
Width = 585
|
|
AxisList = <
|
|
item
|
|
Grid.Visible = False
|
|
TickColor = clRed
|
|
AxisPen.Color = clRed
|
|
AxisPen.Visible = True
|
|
Marks.LabelFont.Color = clRed
|
|
Marks.LabelBrush.Style = bsClear
|
|
Minors = <>
|
|
Title.LabelFont.Color = clRed
|
|
Title.LabelFont.Orientation = 900
|
|
Title.Visible = True
|
|
Title.Caption = '1st y axis'
|
|
Title.LabelBrush.Style = bsClear
|
|
Transformations = ChartAxisTransformations1
|
|
end
|
|
item
|
|
Alignment = calBottom
|
|
AxisPen.Visible = True
|
|
Marks.LabelBrush.Style = bsClear
|
|
Minors = <>
|
|
Title.LabelBrush.Style = bsClear
|
|
end
|
|
item
|
|
Grid.Visible = False
|
|
TickColor = clBlue
|
|
AxisPen.Color = clBlue
|
|
AxisPen.Visible = True
|
|
Marks.LabelFont.Color = clBlue
|
|
Marks.LabelBrush.Style = bsClear
|
|
Minors = <>
|
|
Title.LabelFont.Color = clBlue
|
|
Title.LabelFont.Orientation = 900
|
|
Title.Visible = True
|
|
Title.Caption = '2nd y axis'
|
|
Title.LabelBrush.Style = bsClear
|
|
Transformations = ChartAxisTransformations2
|
|
end>
|
|
BackColor = clWhite
|
|
Foot.Brush.Color = clBtnFace
|
|
Foot.Font.Color = clBlue
|
|
Frame.Visible = False
|
|
Title.Brush.Color = clBtnFace
|
|
Title.Font.Color = clBlue
|
|
Title.Text.Strings = (
|
|
'TAChart'
|
|
)
|
|
object Chart1LineSeries1: TLineSeries
|
|
AxisIndexX = 1
|
|
AxisIndexY = 0
|
|
LinePen.Color = clRed
|
|
Source = RandomChartSource1
|
|
end
|
|
object Chart1LineSeries2: TLineSeries
|
|
AxisIndexX = 1
|
|
AxisIndexY = 2
|
|
LinePen.Color = clBlue
|
|
Source = RandomChartSource2
|
|
end
|
|
end
|
|
object cbAtDataOnly: TCheckBox
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideBottom.Control = Owner
|
|
AnchorSideBottom.Side = asrBottom
|
|
Left = 6
|
|
Height = 19
|
|
Top = 282
|
|
Width = 117
|
|
Anchors = [akLeft, akBottom]
|
|
BorderSpacing.Around = 6
|
|
Caption = 'y axes at data only'
|
|
OnChange = cbAtDataOnlyChange
|
|
TabOrder = 1
|
|
end
|
|
object cbGrouped: TCheckBox
|
|
AnchorSideLeft.Control = cbAtDataOnly
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideTop.Control = cbAtDataOnly
|
|
Left = 139
|
|
Height = 19
|
|
Top = 282
|
|
Width = 66
|
|
BorderSpacing.Left = 16
|
|
Caption = 'Grouped'
|
|
OnChange = cbGroupedChange
|
|
TabOrder = 2
|
|
end
|
|
object ChartAxisTransformations1: TChartAxisTransformations
|
|
Left = 96
|
|
Top = 112
|
|
object ChartAxisTransformations1AutoScaleAxisTransform1: TAutoScaleAxisTransform
|
|
end
|
|
end
|
|
object ChartAxisTransformations2: TChartAxisTransformations
|
|
Left = 440
|
|
Top = 112
|
|
object ChartAxisTransformations2AutoScaleAxisTransform1: TAutoScaleAxisTransform
|
|
MaxValue = 2
|
|
MinValue = 1
|
|
end
|
|
end
|
|
object RandomChartSource1: TRandomChartSource
|
|
PointsNumber = 10
|
|
RandSeed = 1004835833
|
|
XMax = 1
|
|
YMax = 1
|
|
Left = 96
|
|
Top = 176
|
|
end
|
|
object RandomChartSource2: TRandomChartSource
|
|
PointsNumber = 5
|
|
RandSeed = 1004914276
|
|
XMax = 1
|
|
YMax = 1000
|
|
YMin = -1000
|
|
Left = 440
|
|
Top = 176
|
|
end
|
|
end
|