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
Title of a TeeChart
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi vijay,
You can do something like this:
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 |
Instructions - How to post in this forum |