Title of a TeeChart

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
vijay
Newbie
Newbie
Posts: 36
Joined: Mon Sep 26, 2005 4:00 am

Title of a TeeChart

Post by vijay » Tue Nov 21, 2006 3:28 pm

I have several TeeCharts with some titles...
for example tchart1 has title "teechart1" and tchart2 has "teechart2"
now can I add a text like "some text"
teechart1(some text) and teechart2(some text) at runtime to every teechart's title?
Thanks in advance

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 Nov 21, 2006 3:39 pm

Hi vijay,

You can do something like this:

Code: Select all

			tChart1.Header.Text += "(some text)";
			tChart2.Header.Text += "(some 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

vijay
Newbie
Newbie
Posts: 36
Joined: Mon Sep 26, 2005 4:00 am

Post by vijay » Tue Nov 21, 2006 4:04 pm

Thanks for the info

Post Reply