Page 1 of 1

Vertical Lines in TeeChart of type Area

Posted: Fri Sep 21, 2007 8:41 pm
by 9640703
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

Posted: Mon Sep 24, 2007 8:29 am
by narcis
Hi Gagan,

You can try doing something like this:

Code: Select all

((Steema.TeeChart.Styles.Area)WebChart1.Chart[0]).AreaLines.Visible = false;

Posted: Mon Sep 24, 2007 2:01 pm
by 9640703
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]

Posted: Mon Sep 24, 2007 2:11 pm
by narcis
Hi Gagan,

In that case you should also add this:

Code: Select all

			((Steema.TeeChart.Styles.Area)WebChart1.Chart[0]).LinePen.Visible = false;

Posted: Mon Sep 24, 2007 2:18 pm
by 9640703
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