lazarus/components/tachart/tachartlazaruspkg.pas
darius 488a25bd42 1) Created new unit TAChartUtils, moved some support code into it.
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 -
2008-12-11 18:57:43 +00:00

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.