mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-11-04 10:39:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			361 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			361 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program axisdemo;
 | 
						|
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
 | 
						|
uses
 | 
						|
  {$IFDEF UNIX}{$IFDEF UseCThreads}
 | 
						|
  cthreads,
 | 
						|
  {$ENDIF}{$ENDIF}
 | 
						|
  Interfaces, // this includes the LCL widgetset
 | 
						|
  Forms, Main;
 | 
						|
 | 
						|
{$R *.res}
 | 
						|
 | 
						|
begin
 | 
						|
  Application.Scaled := True;
 | 
						|
  Application.Title := 'TAChart axis demo';
 | 
						|
  Application.Initialize;
 | 
						|
  Application.CreateForm(TForm1, Form1);
 | 
						|
  Application.Run;
 | 
						|
end.
 | 
						|
 |