Hi,
I am able to print a couple of dynamically created tchart xy plots on one page, but I need to add header and footer information on the printout ( I am using 4.1.2011.4192 .NET component) and so far I did not find a suitable example nor did I find a way to do this. What is the best source of information?
Jerome
Printing custom text
Re: Printing custom text
Hello Jerome,
If you want see the Header and the Footer of Charts, you must change the property Footer.Visible or Header.visible to true, as do in next lines of code:
Can you please, tell us if previous works as you expected?
I hope will helps.
Thanks,
If you want see the Header and the Footer of Charts, you must change the property Footer.Visible or Header.visible to true, as do in next lines of code:
Code: Select all
tChart1.Header.Visible = true;
tChart1.Header.Text = "TeeChart2011";
tChart1.Footer.Visible = true;
tChart1.Footer.Text = "Wendesday, 2 of November";
I hope will helps.
Thanks,
Best Regards,
Sandra Pazos / 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 |