Page 1 of 1

Printing custom text

Posted: Mon Oct 31, 2011 10:53 pm
by 15660436
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

Re: Printing custom text

Posted: Wed Nov 02, 2011 2:46 pm
by 10050769
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:

Code: Select all

            tChart1.Header.Visible = true;
                tChart1.Header.Text = "TeeChart2011";
                tChart1.Footer.Visible = true;
                tChart1.Footer.Text = "Wendesday, 2 of November";
Can you please, tell us if previous works as you expected?

I hope will helps.

Thanks,