lazarus/components/tachart/demo/labels/labelsdemo.lpr
ask fa8507e364 TAChart: Extract TATextElements unit
git-svn-id: trunk@38564 -
2012-09-08 07:02:21 +00:00

21 lines
357 B
ObjectPascal

program labelsdemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, tachartlazaruspkg, Main;
{$R *.res}
begin
Application.Title := 'Label positioning demo';
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.