TColorLineTool and TFastLineSeries are heavily used in my project.
There is an extra horizontal "Ghost" line the chart if I set TColorLineTool's axis to bottom,
and there will be no line if I set axis to right.
Please help! thanks.
TeeChart2013SourceCode.exe
November 19, 2013
Build 2013.09.131119
Code: Select all
type
TForm6 = class(TForm)
Chart1: TChart;
Series1: TFastLineSeries;
ChartTool1: TColorLineTool;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form6: TForm6;
implementation
{$R *.dfm}
procedure TForm6.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues(1000);
end;
end.