lazarus/components/tachart/demo/opengl/Main.lfm
ask 48e68e866e TAChart: Add OpenGL demo
git-svn-id: trunk@29707 -
2011-03-02 14:04:52 +00:00

66 lines
1.4 KiB
Plaintext

object Form1: TForm1
Left = 308
Height = 319
Top = 132
Width = 684
Caption = 'Form1'
ClientHeight = 319
ClientWidth = 684
OnCreate = FormCreate
LCLVersion = '0.9.31'
object OpenGLControl1: TOpenGLControl
Left = 344
Height = 319
Top = 0
Width = 340
Align = alClient
AutoResizeViewport = True
OnPaint = OpenGLControl1Paint
end
object Chart1: TChart
Left = 0
Height = 319
Top = 0
Width = 344
AxisList = <
item
Marks.Frame.Style = psSolid
Marks.LabelBrush.Color = clYellow
Marks.LabelBrush.Style = bsSolid
Title.LabelFont.Orientation = 900
end
item
Alignment = calBottom
end>
Foot.Brush.Color = clBtnFace
Foot.Font.Color = clBlue
Title.Brush.Color = clBtnFace
Title.Font.Color = clBlue
Title.Text.Strings = (
'Standard'
)
Title.Visible = True
Align = alLeft
ParentColor = False
object Chart1LineSeries1: TLineSeries
LinePen.Color = clBlue
LinePen.Width = 3
Source = RandomChartSource1
end
object Chart1BarSeries1: TBarSeries
BarBrush.Color = clRed
Source = RandomChartSource1
end
end
object RandomChartSource1: TRandomChartSource
PointsNumber = 10
RandSeed = 1792875960
XMax = 10
XMin = 0
YMax = 10
YMin = 0
left = 210
top = 161
end
end