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
Pen.width
Re: Pen.width
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:
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |