lazarus/components/tachart/funcdemo/main.lfm
2009-04-21 05:49:44 +00:00

57 lines
1.3 KiB
Plaintext

object Form1: TForm1
Left = 290
Height = 362
Top = 152
Width = 461
Caption = 'Form1'
ClientHeight = 362
ClientWidth = 461
OnCreate = FormCreate
LCLVersion = '0.9.27'
object Chart1: TChart
Height = 362
Width = 461
Legend.Visible = True
Title.Brush.Color = clBtnFace
Title.Font.Color = clBlue
Title.Text.Strings = (
'TAChart'
)
Foot.Brush.Color = clBtnFace
Foot.Font.Color = clBlue
LeftAxis.Grid.Style = psDot
LeftAxis.Grid.Visible = True
LeftAxis.Title.Angle = 90
LeftAxis.Visible = False
BottomAxis.Grid.Style = psDot
BottomAxis.Grid.Visible = True
BottomAxis.Visible = False
Frame.Visible = True
Align = alClient
ParentColor = False
object Chart1FuncSeries1: TFuncSeries
Extent.XMin = -6.28
Extent.YMin = -1
Extent.XMax = 6.28
Extent.YMax = 1
Extent.UseXMin = True
Extent.UseYMin = True
Extent.UseXMax = True
Extent.UseYMax = True
Pen.Color = clOlive
Pen.Width = 2
Step = 4
Title = 'Sin(x)'
end
object Chart1XAxis: TLine
ShowInLegend = False
SeriesColor = clBlack
end
object Chart1YAxis: TLine
ShowInLegend = False
LineStyle = lsVertical
SeriesColor = clBlack
end
end
end