lazarus/components/tachart/demo/legend/legenddemo.lpr
2018-10-03 10:55:04 +00:00

23 lines
415 B
ObjectPascal

program legenddemo;
{$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.Scaled:=True;
Application.Title:='TAChart legend demo';
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.