lazarus/components/tachart/demo/rotate/Main.lfm
2018-10-03 10:55:04 +00:00

179 lines
4.2 KiB
Plaintext

object Form1: TForm1
Left = 342
Height = 437
Top = 152
Width = 456
Caption = 'Form1'
ClientHeight = 437
ClientWidth = 456
DefaultMonitor = dmDesktop
Position = poScreenCenter
LCLVersion = '2.1.0.0'
object Chart1: TChart
Left = 0
Height = 373
Top = 0
Width = 456
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 Chart1LineSeries1: TLineSeries
Marks.Format = '%1:.0g%%'
Marks.Style = smsCustom
ZPosition = 12
AxisIndexX = 1
AxisIndexY = 0
LinePen.Color = clRed
LinePen.Style = psDot
LinePen.Width = 5
Source = RandomChartSource1
end
object Chart1BarSeries1: TBarSeries
ZPosition = 11
AxisIndexX = 1
AxisIndexY = 0
BarBrush.Color = clMoneyGreen
Source = RandomChartSource1
end
object Chart1AreaSeries1: TAreaSeries
AxisIndexX = 1
AxisIndexY = 0
AreaContourPen.Width = 2
AreaLinesPen.Color = clRed
Depth = 10
Source = RandomChartSource1
UseZeroLevel = True
end
end
object Panel1: TPanel
Left = 0
Height = 64
Top = 373
Width = 456
Align = alBottom
AutoSize = True
ClientHeight = 64
ClientWidth = 456
TabOrder = 1
object cbRotateLine: TCheckBox
AnchorSideLeft.Control = Panel1
AnchorSideTop.Control = Panel1
Left = 9
Height = 19
Top = 5
Width = 81
BorderSpacing.Left = 8
BorderSpacing.Top = 4
Caption = 'Rotate lines'
OnChange = cbRotateLineChange
TabOrder = 0
end
object cbRotateBar: TCheckBox
AnchorSideLeft.Control = cbRotateLine
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
Left = 106
Height = 19
Top = 5
Width = 79
BorderSpacing.Left = 16
BorderSpacing.Top = 4
Caption = 'Rotate bars'
OnChange = cbRotateBarChange
TabOrder = 1
end
object cbNegative: TCheckBox
AnchorSideLeft.Control = cbRotateArea
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
Left = 296
Height = 19
Top = 5
Width = 103
BorderSpacing.Left = 16
BorderSpacing.Top = 4
Caption = 'Negative values'
OnChange = cbNegativeChange
TabOrder = 2
end
object cbRotateArea: TCheckBox
AnchorSideLeft.Control = cbRotateBar
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
Left = 201
Height = 19
Top = 5
Width = 79
BorderSpacing.Left = 16
BorderSpacing.Top = 4
Caption = 'Rotate area'
OnChange = cbRotateAreaChange
TabOrder = 3
end
object cbMarkPositions: TComboBox
AnchorSideLeft.Control = lblMarkPositions
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = cbRotateLine
AnchorSideTop.Side = asrBottom
Left = 95
Height = 23
Top = 32
Width = 100
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Bottom = 8
ItemHeight = 15
ItemIndex = 0
Items.Strings = (
'Outside'
'Positive'
'Negative'
'Inside'
)
OnChange = cbMarkPositionsChange
Style = csDropDownList
TabOrder = 4
Text = 'Outside'
end
object lblMarkPositions: TLabel
AnchorSideLeft.Control = cbRotateLine
AnchorSideTop.Control = cbMarkPositions
AnchorSideTop.Side = asrCenter
Left = 9
Height = 15
Top = 36
Width = 78
Caption = 'Mark positions'
ParentColor = False
end
end
object RandomChartSource1: TRandomChartSource
PointsNumber = 9
RandSeed = 1376070732
XMax = 8
XMin = 0
YMax = 15
YMin = 7
left = 352
top = 20
end
end