From 7b9ae61a9dffd204745be97fc9b2765b6c08bf4d Mon Sep 17 00:00:00 2001 From: ask Date: Fri, 20 Apr 2012 06:46:48 +0000 Subject: [PATCH] TAChart: Add TeeChart-compatible TPointerSeries class git-svn-id: trunk@36920 - --- components/tachart/tachartteechart.pas | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/components/tachart/tachartteechart.pas b/components/tachart/tachartteechart.pas index 64e14bb12c..c9a41c8ebb 100644 --- a/components/tachart/tachartteechart.pas +++ b/components/tachart/tachartteechart.pas @@ -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 }