Page 1 of 1

Title of a TeeChart

Posted: Tue Nov 21, 2006 3:28 pm
by 9528399
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

Posted: Tue Nov 21, 2006 3:39 pm
by narcis
Hi vijay,

You can do something like this:

Code: Select all

			tChart1.Header.Text += "(some text)";
			tChart2.Header.Text += "(some text)";

Posted: Tue Nov 21, 2006 4:04 pm
by 9528399
Thanks for the info