"TeeChart" titl
-
- Newbie
- Posts: 14
- Joined: Thu Aug 31, 2006 12:00 am
"TeeChart" titl
We want to Remove "TeeChart" title for TeeChart control for all report web forms. Please let us know how we could achieve the same
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Vikas,
You can do it at design-time using the chart editor or at run-time using:
You can do it at design-time using the chart editor or at run-time using:
Code: Select all
WebChart1.Chart.Header.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 |
-
- Newbie
- Posts: 14
- Joined: Thu Aug 31, 2006 12:00 am
problem in case of blank chart
Hi Narcis,
It works fine when chart is plotted sucessfully in case of error or case when no chart is plotted chart holder xome with the title "teechart"
It works fine when chart is plotted sucessfully in case of error or case when no chart is plotted chart holder xome with the title "teechart"
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Vikas,
Making the title not visible it doesn't mean it doesn' have a title. To remove the title's content you should use:
Making the title not visible it doesn't mean it doesn' have a title. To remove the title's content you should use:
Code: Select all
WebChart1.Chart.Header.Text = "";
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 |