lazarus/components/tachart/demo/nan/nandemo.lpr
ask 6f963be4f2 TAChart: Add NaN demo
git-svn-id: trunk@32323 -
2011-09-13 17:17:49 +00:00

23 lines
421 B
ObjectPascal

program nandemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Main, tachartlazaruspkg
{ you can add units after this };
{$R *.res}
begin
Application.Title := 'TAChart NaN demo';
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.