Pen.width

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
cborgeat
Newbie
Newbie
Posts: 8
Joined: Fri Apr 08, 2016 12:00 am

Pen.width

Post by cborgeat » Fri Jun 17, 2016 9:31 am

Hello, i have a problem in the new version of teechart 2015 with delphi 10. Comparing to tho old version (delphi xe with teechart 2010 or 2013) then series and axes lines are more bold with the same width = 1 (see attached picture) . How can i have the same look in the new version with a simple change ?
Thanks
old.png
old.png (55.43 KiB) Viewed 4534 times
new.png
new.png (66.81 KiB) Viewed 4535 times

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

Re: Pen.width

Post by Yeray » Mon Jun 20, 2016 8:45 am

Hello

We moved from GDI to GDIPlus as default canvas. Take a look at the options you have to change from GDIPlus to GDI here.
An alternative would be to disable AntiAlias in GDIPlus:

Code: Select all

(Chart1.Canvas as TGDIPlusCanvas).AntiAlias:=false;
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

Post Reply