Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 285

Summary: [TV52015930] TAntiAliasTool doesn't respect line width in "flat" sections. See att...
Product: VCL TeeChart Reporter: narcís calvet <narcis>
Component: ChartAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: major CC: david
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description narcís calvet 2013-11-20 10:36:22 EST
TAntiAliasTool doesn't respect line width in "flat" sections. See attached image and code below to reproduce the issue.

uses Series, TeeAntiAlias;

procedure TForm1.FormCreate(Sender: TObject);
var Series1 : TLineSeries;
begin
 Series1:=TLineSeries.Create(Self);
 Series1.LinePen.Width:=3;
 Series1.Add(5);
 Series1.Add(5);
 Series1.Add(7);
 Series1.Add(3);

 Chart1.View3D:=False;
 Chart1.AddSeries(Series1);
 Chart1.Tools.Add(TAntiAliasTool.Create(Self));
end; [created:2011-11-29T11:00:12.000+01:00 reported by:narcis@steema.com reported in version:2011.04.41118 (TeeChart VCL)]
Comment 1 david berneda 2013-11-29 12:55:39 EST
See:

http://bugs.teechart.net/show_bug.cgi?id=491