lazarus/components/tachart/demo/radial/radialdemo.lpr
ask e774fb0313 TAChart: Add radial series demo
git-svn-id: trunk@28549 -
2010-11-28 19:47:45 +00:00

21 lines
356 B
ObjectPascal

program radialdemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, lazcontrols, main, tachartlazaruspkg
{ you can add units after this };
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.