Repository URL to install this package:
Version:
1.6 ▾
|
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 };
begin
Application.Title := 'TAChart legend demo';
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.