TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
-
qcrnd
- Advanced
- Posts: 214
- Joined: Mon Sep 04, 2006 12:00 am
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

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

- Posts: 9647
- 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;
-
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