pie series - zoom larger than chart - border drawn incorrect

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
marder
Advanced
Posts: 115
Joined: Thu May 29, 2008 12:00 am

pie series - zoom larger than chart - border drawn incorrect

Post by marder » Mon Oct 05, 2009 1:39 pm

Hi.

I realized that when I zoom in my pie chart so the complete pie does not fit on my chart, the pixels at the border are not drawn correctly.
Image

Note: I am using Delphi 2010 and TeeChart V8.06
I realized that this problem did not occur on my Delphi 2009 with TeeChart V8.04!

Can you please tell me if this is a known issue and if there is a workaround?

Thanks!

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: pie series - zoom larger than chart - border drawn incorrect

Post by Yeray » Mon Oct 05, 2009 3:12 pm

Hi marder,

Yes, I've been able to reproduce it and I've added it to the wish list to be fixed in next releases (TV52014465).
The code I used to reproduce it is the following:

Code: Select all

uses series, TeeTools, TeeAntiAlias;

var Series1: TPieSeries;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Series1 := TPieSeries.Create(self);
  Chart1.AddSeries(Series1);

  Series1.FillSampleValues(7);

  Chart1.Aspect.Zoom := 250;

  Chart1.Tools.Add(TAntiAliasTool.Create(self));
end;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

marder
Advanced
Posts: 115
Joined: Thu May 29, 2008 12:00 am

Re: pie series - zoom larger than chart - border drawn incorrect

Post by marder » Tue Oct 06, 2009 7:53 am

Dear Yeray.

Thanks for your help!
Could you tell me if this is an issue with Delphi 2010 or if this issue slipped in with the TeeChart V8.06 update?
Means: If I use Delphi 2009 with the new V8.06, would this issue still occur?

Best regards!

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: pie series - zoom larger than chart - border drawn incorrect

Post by Yeray » Tue Oct 06, 2009 11:09 am

Hi marder,

Yes, the problem is still reproducible with today's sources.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

marder
Advanced
Posts: 115
Joined: Thu May 29, 2008 12:00 am

Re: pie series - zoom larger than chart - border drawn incorrect

Post by marder » Tue Oct 06, 2009 2:24 pm

Dear Yeray.

Thanks for your feedback, but what I meant was:
Dose this issue also occur with Delphi 2009 or only with Delphi 2010?

Thanks!

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: pie series - zoom larger than chart - border drawn incorrect

Post by Yeray » Tue Oct 06, 2009 3:32 pm

Hi marder,

Both versions come from the same sources and that doesn't seem an IDE-depending problem. So it should be reproducible with any TeeChart v8.06.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

marder
Advanced
Posts: 115
Joined: Thu May 29, 2008 12:00 am

Re: pie series - zoom larger than chart - border drawn incorrect

Post by marder » Wed Oct 07, 2009 7:04 am

Ok, thanks!

Post Reply