Vertical Lines in TeeChart of type Area

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
gs
Newbie
Newbie
Posts: 84
Joined: Mon Mar 20, 2006 12:00 am
Location: US

Vertical Lines in TeeChart of type Area

Post by gs » Fri Sep 21, 2007 8:41 pm

Hi,

I am using TeeChart(WebChart) in .net2.0 WEBFORMS. I am drawing a series and setting the TeeChart style as of type Area. I need to get rid of the VERTICAL lines that comes with the chart in the series.

Please let me know how to do this?

Thanks
Gagan

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Sep 24, 2007 8:29 am

Hi Gagan,

You can try doing something like this:

Code: Select all

((Steema.TeeChart.Styles.Area)WebChart1.Chart[0]).AreaLines.Visible = false;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

gs
Newbie
Newbie
Posts: 84
Joined: Mon Mar 20, 2006 12:00 am
Location: US

Post by gs » Mon Sep 24, 2007 2:01 pm

Hi Narcís,

Thanks for yet another problem solving reply. I am able to get rid of the Vertical Lines on the Front wall but as my Chart is 3D I am still not able to get rid of the lines on the top wall of the Chart.
When is set it as
Chart1.Aspect.View3D = false;
they are gone.

But as 3D gives a better look so I need to get rid of the lines in the top wall also.

Any solution?

Thanks
Gagan
[/img]

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Sep 24, 2007 2:11 pm

Hi Gagan,

In that case you should also add this:

Code: Select all

			((Steema.TeeChart.Styles.Area)WebChart1.Chart[0]).LinePen.Visible = false;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

gs
Newbie
Newbie
Posts: 84
Joined: Mon Mar 20, 2006 12:00 am
Location: US

Post by gs » Mon Sep 24, 2007 2:18 pm

Hi Narcís,

Wonderful......that works again. There are really many exciting features in TeeChart that I am trying to learn and use and I really appreciate your guidance.

Regards
Gagan

Post Reply