TAChart: Add TeeChart-compatible TPointerSeries class

git-svn-id: trunk@36920 -
This commit is contained in:
ask 2012-04-20 06:46:48 +00:00
parent 8bfa6da5ec
commit 7b9ae61a9d

View File

@ -24,7 +24,7 @@ interface
uses
Classes, SysUtils,
TAGraph, TAChartAxis, TAChartAxisUtils, TAChartUtils;
TAGraph, TAChartAxis, TAChartAxisUtils, TAChartUtils, TASeries;
type
TChartTeeChart = class helper for TChart
@ -43,6 +43,12 @@ type
property MarginTop: TChartDistance index 2 read GetMargin write SetMargin;
end;
TPointerSeries = class(TLineSeries)
published
property LineType default ltNone;
property ShowPoints default true;
end;
implementation
{ TChartTeeChart }