mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-03 04:58:22 +02:00

2) Heavily refactored code of CalculateIntervals and TAGraph.DrawAxis procedures -- removed lots of duplicated code, simplifed logic, extracted local procedures etc. 3) Introduced TPenBrushFontRecall helper class. 4) Added 'Axis titles' checkbox to the demo program. Patch by Alexander Klenin Resolves: http://bugs.freepascal.org/view.php?id=12758 git-svn-id: trunk@17799 -
22 lines
395 B
ObjectPascal
22 lines
395 B
ObjectPascal
{ This file was automatically created by Lazarus. do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit TAChartLazarusPkg;
|
|
|
|
interface
|
|
|
|
uses
|
|
TASeries, TAGraph, TAChartUtils, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('TAGraph', @TAGraph.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('TAChartLazarusPkg', @Register);
|
|
end.
|