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 - [TV52015930] TAntiAliasTool doesn't respect line width in "flat" sections. See att...
Summary: [TV52015930] TAntiAliasTool doesn't respect line width in "flat" sections. Se...
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Chart (show other bugs)
Version: unspecified
Hardware: All All
: Normal major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-11-29 11:00 EST by narcís calvet
Modified: 2013-11-29 12:55 EST (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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