2D Line Chart Smoothness problem

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
qcrnd
Advanced
Posts: 214
Joined: Mon Sep 04, 2006 12:00 am

2D Line Chart Smoothness problem

Post by qcrnd » Mon May 25, 2009 6:02 am

Hi
I have a line chart . with thick lines and an Outline.
I found that between each point on the line there is a kind of border and it doesnt look nice
Image
I want my lines to be smooth.
Currently the lines dont look nice because they it looks like there are artifacts inside the line . I want these border lines dividing the points to disappear
how can I do it.
BTW - I noticed that the same problem is in 3D . I also noticed that removing the outline doesnt help either.
Thanks.

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

Post by Yeray » Mon May 25, 2009 8:44 am

Hi qcrnd,

I think that you are looking for this:

Code: Select all

line1.LinePen.EndCap = System.Drawing.Drawing2D.LineCap.Round;
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

qcrnd
Advanced
Posts: 214
Joined: Mon Sep 04, 2006 12:00 am

Post by qcrnd » Mon May 25, 2009 10:12 am

Yeray hi
Perfect, exactly what I needed
Thanks

Post Reply