"TeeChart" titl

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Vikas Aggarwal
Newbie
Newbie
Posts: 14
Joined: Thu Aug 31, 2006 12:00 am

"TeeChart" titl

Post by Vikas Aggarwal » Mon Sep 18, 2006 9:52 am

We want to Remove "TeeChart" title for TeeChart control for all report web forms. Please let us know how we could achieve the same

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 18, 2006 10:27 am

Hi Vikas,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Vikas Aggarwal
Newbie
Newbie
Posts: 14
Joined: Thu Aug 31, 2006 12:00 am

problem in case of blank chart

Post by Vikas Aggarwal » Tue Sep 19, 2006 7:08 am

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"

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

Post by Narcís » Tue Sep 19, 2006 8:24 am

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:

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply