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
Vertical Lines in TeeChart of type Area
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Gagan,
You can try doing something like this:
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 |
Instructions - How to post in this forum |
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]
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]
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Gagan,
In that case you should also add this:
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 |
Instructions - How to post in this forum |